Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'Page'

Home / Forums / Search / Search Results for 'Page'

Viewing 20 results - 31,541 through 31,560 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: 'Page Not Found' Error

    #103845

    Sorry, the home page works as well (asepaleco.com)

    In forum: Virtue Theme

    In reply to: 'Page Not Found' Error

    #103844

    Another update: the only pages that work are pages that are child pages of other pages. This is the case even when the parent page doesn’t work. For example: asepaleco.com/location/gallery is the Gallery page, which is the child of the Location page. The Gallery page can be loaded/found/viewed, but the Location page cannot. That is, unless I make it the child of say the home page, but then the link looks like this: asepaleco.com/asepaleco/location/gallery

    In forum: Virtue Theme

    In reply to: 'Page Not Found' Error

    #103843

    Quick update: I went to permalinks and switched the settings to ‘plain’ and that worked and made the pages viewable again, but with the ugly “plain” setting for the page links… So I’m definitely assuming now that this issue has something to do with the permalink setup

    In forum: Virtue Theme

    In reply to: 'Page Not Found' Error

    #103839

    Hi all,

    I tried setting permalinks to “Post name” and clicking save, but no difference. I also don’t want to pass on the admin info for the site, mostly because I’m doing consulting for the website and cannot share admin access without getting full approval.

    Is there a way to send screenshots of the page set up, or permalink settings? Unless you think the issue might stem from something else as well. Just double checking: no parent set for the page, visibility public, URL is asepaleco.com/donate, and so is the live URL. Permalink settings are now http://www.asepaleco.com/sample-post/

    ________________________________

    If there are old files left from an old version of a website and are stored on the domain, can this cause an issue? Not sure if I’m using the right terminology here, but if say on the server’s directory, there is still some html for the old /donate page, could this cause a sort of title duplication issue, where both pieces of content are trying to direct to the same source?

    #103838

    Hello Team,

    Noticed that breadcrumbs for single product page shows “Page #” at the end.

    E.g. Home>Shop>ProductCategory>Product-Page 1

    We haven’t noticed this before. It seems to have started with the updates to the latest Virtue theme (3.7.7) and Woocommerce 2.6.2.

    We would like to hide the “Page-1” from the end of the breadcrumb. Is this something new or a setting we need to adjust?

    Thanks in advance.

    In forum: Pinnacle Theme

    In reply to: Tablet layout issues

    #103820

    In your pagebuilder settings you have tablet mode turned on. Turn that off so your columns don’t break down until mobile at which point they would all fall into one column.

    Ben

    In forum: Pinnacle Theme
    #103818

    Ultimate Member is a good plugin I have used, not used wp customer area but if your liking it then It’s probably fine.

    In these private pages are you not able to see the sidebar options? every page in the theme has options for a sidebar.

    Ben

    In forum: Virtue Theme

    In reply to: page builder issue

    #103808
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: page builder issue

    #103803

    Is page builder active at the moment? It seems like everything is displaying fine now. Are you using any plugins with known conflicts with pagebuilder? I would first look into that to see if any have known issues with it.

    In forum: Virtue Theme
    #103797

    Hello there,

    my site http://www.maniakshop.com crashed after some usage of pagebuilder, what shall I do with it? when the plugin is activated nothing works…

    #103794

    Hi, just thought I would ask if you are familiar with the WP Customer area plugin? I need private viewing areas for each customer and this solution is working great (if there is a better plug in that you know of let me know).

    I’m trying to remove the sidebar from the private pages but can’t find a way to do it.

    I will also contact the plug in author….

    Thanks, Glenn

    http://www.newbyphoto.ca

    #103780

    remove the php out of your css file:

    function kad_sidebar_on_product_page($sidebar) {
      if (is_product()) {
        return true;
      }
      return $sidebar;
    }

    that shouldn’t every be placed in css as it’s php. Then fix your css as your missing a closing bracket here:

    #s {
        background-color: #FFF;
        color: #000;
    width: 100%;
        border: 1px solid rgb(14, 10, 6);
            border-top-color: #080965;
            border-right-color: #080965;
            border-bottom-color: #080965;
            border-left-color: #080965;

    Finally, I can’t figure out why you have all this css in your custom css box:

    @media (min-width: 400px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 95px !important;
    }
    @media (min-width: 400px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 88px !important;
    }
    @media (min-width: 992px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 65px !important;
    html {
        position: relative;
        min-height: 100%;
    }
    body {
        margin: 0 0 100px; /* bottom = footer height */
    }
    footer {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100px;
        width: 100%;
    }
    #containterfooter .contentclass {
        padding-bottom: 0;
    }
    * {
    	margin: 0;
    }
    html, body {
    	height: 100%;
    }
    @media (min-width: 992px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 200px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }
    @media (min-width: 992px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 85px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Remove all of it (a lot of it’s broken anyway)

    And simply add this css:

    @media (min-width: 768px) {
    html, body {
    height: 100%;
    }
    html body.wide #wrapper.container {
    min-height: 100%;
    position: relative;
    padding-bottom: 84px !important;
    }
    #containerfooter {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    }
    }

    Ben

    In forum: Virtue Theme

    In reply to: Testamonial

    #103774

    Testimonials are in the testimonial posts area of your admin. See here: http://docs.kadencethemes.com/virtue-premium/post-types/testimonial-post/

    The Carousel is simply a widget pulling in those posts.

    The forum is a shortcode you can add to any page using the virtue shortcodes button.

    My guess is you have called chimpy to pull into every post type on your site so it’s pulling into the testimonial posts.

    Ben

    In forum: Pinnacle Theme

    In reply to: Imaged

    #103765

    Try adding this CSS to Theme Options> Custom CSS.

    .products .panel-grid-cell {
        width: 50% !important;
        display: inline-block;
    }

    This will only effect the page that you linked to, but let me know if this is the look you’re going for.

    #103763

    It’s due to the page not having a lot of content on it. I can’t figure out what to do to fix this, but the issue is only visible on a larger monitor. I can’t see it on my macbook, but I can on my second monitor.

    Maybe that info will be helpful to whoever sees this next.

    #103760

    Hiya,

    This site http://185.123.99.153/~cyrilssoapshed/ is pretty much how we want it for desktop.

    However there are some issues I would like to resolve on layout on a tablet please? Can you help?

    1) Homepage menus stop aligning symmetrically?
    2) events bleed off page http://185.123.99.153/~cyrilssoapshed/events/
    3) Guest soap images at top of page not centred? http://185.123.99.153/~cyrilssoapshed/guest-soaps/
    4) Guest soaps places leave spaces on tablet responsive ? http://185.123.99.153/~cyrilssoapshed/guest-soaps/

    Thanks, in advance,
    Rebecca

    In forum: Pinnacle Theme
    #103751

    Hi,
    I like very much The Pinnacle theme…. at the moment I use the free version but may be I’ll buy the premium.
    I would like to translate the content in my home page.
    I used the icon menu and the portfolio Carousel contents in Home layout section but now, I have no idea how to translate this content. So,, I cannot see the home page content in other language…
    Can you please help me with some options?
    MAybe I need to use the Pinnacle premium theme or I can use a plug in like Polylang?
    I need a direction to find a solution…
    Thank you

    #103745

    Good afternoon,

    In box view I normally add left and right padding using:

    .entry-content {
    padding-left: 25px;
    padding-right: 20px;
    }

    How can I achieve this for all shop related pages too?

    See http://176.32.230.14/maisies.co/product-category/chocolate-bars/

    Thank you,
    Peter

    In forum: Virtue Theme

    In reply to: Excerpt length in blog

    #103742

    So you can add a custom excerpt to your post from the post edit page and make it as long as you would like. Or you can set the summary to show full posts and use the “insert read more tag” feature from the toolbar toggle in the visual editor of your post.
    Hope one of those works for you!

    Hannah

    #103741

    It works! Most of widfets I’m adding via Siteorigin Pagebuilder. Siteorigin’s widgets can be centered with native settings. But some widgets by other plugins haven’t allign settings. So I had to asking for your help.

    Thank you!

Viewing 20 results - 31,541 through 31,560 (of 53,646 total)