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 - 5,741 through 5,760 (of 53,646 total)
  • Author
    Search Results
  • #261039

    I changed my theme yesterday to the Kadence Po. There seems to be an issue with the Kadence AMP plugin. When I have it activated the links to posts from Pinterest and Twitter don’t work. I get a page that says there was a critical error on my site and I get a link to “learn more about debugging in WordPress.” The links to the home page work, just not the links to articles. This also seems to be an issue on the iPhone not on Android, nor the desktop. It also seems to be just an issue on these two platforms.

    I reached out to WordPress and they say it’s definitely an issue with the plugin. I need help with resolving that issue.

    #261038

    I have a site for which I’ve added a couple global scripts in the header section that need to appear on every page for Google AdWords, but they’ve supplied me a conversion tag that’s supposed to go in the header section of a single page. Two questions…

    Does this really have to go in the header section?

    How do I get this snippet to appear on just one page?

    Do I need to install a plugin or some Google feature to get this to work?

    Thanks!

    #261037

    I have recently started a site using Kadence Pro but when I go to use Woocommerce Multilingual I find nothing is translated for a French site. Most of the time when working with a theme a lot of the basic elements, page titles/menu tabs are already translated. Is this normal with Kadence or am I missing something?

    #261036

    I want to use the Contact item in my Header so that the ‘envelope’ is there. However, I want it to be a link to my contact page, not just an email address. I’ve tried using my contact URL instead of an email but that’s not working.

    #261034

    Hello,

    I have created a header using the Kadence header creator. For a particular landing page I want to disable this default header and use a different one. Is this possible using the Kadence header tool?

    In forum: Virtue Theme
    #261026
    function change_sidebar_metabox() {
       foreach ( array( 'blogliist_metabox', 'bloggrid_metabox' ) as $meta_id ) {
        $cmb = cmb2_get_metabox($meta_id);
        if (is_object($cmb)) {
            $cmb->update_field_property('_kad_page_sidebar', 'name', __('Show/Hide Sidebar', 'virtue'));
            $cmb->update_field_property('_kad_page_sidebar', 'desc', __('Without the sidebar, the layout will be fullwidth.', 'virtue'));
            $cmb->update_field_property('_kad_page_sidebar', 'options', array(
                'yes' => __('Show Sidebar', 'virtue'),
                'no' => __('Hide Sidebar', 'virtue'),
            ));
    
            $cmb->update_field_property('_kad_sidebar_choice', 'desc', __('If you have elected to hide the sidebar, choosing a sidebar will not change anything.', 'virtue'));
        }
      }
    }
    
    add_action('cmb2_init_before_hookup', 'change_sidebar_metabox', 21);

    You can run it through a foreach see above example ^

    Ben

    #261013
    This reply has been marked as private.
    #261010

    Hey Pedro,
    You can use this css to decrease your header height:

    .titleclass .page-header {
        height: auto;
    }

    And if you want to remove the extra padding above the content area you can do so with this:

    .single-post #content {
        padding-top: 0;
    }

    You can paste those into your custom css box in Theme Options > Custom CSS. Hope that helps!

    Best,
    Hannah

    #261009

    Hi,
    I don’t know how to enable visual editing for mobile devices. It is working fine for desktop view but when I switch to mobile or tablet it does not work. I can change the text size but I can see the results only when I update the page and go to front page to see it..

    #260998

    Hello Support team!

    I’m using Visual Editor Widgets on all pages of my site. Title class of this widget is h3 by default.
    I’d like to ask, can I change the title class of this widget globally? From h3 to h2?

    The website:

    Thanks a lot,
    Anita

    #260997

    Hello,

    What CSS grid framework does Kadence theme use?
    I want to create custom blocks and page templates using ACF and I don’t know what grid system Kadence uses to be able to create my own rows, columns and bespoke sections. GeneratePress which I used to use, uses Unsemantic, but I think they now use Flexbox.
    Just wondering why there is no information about this stuff on the Kadence site.
    I would like to use this theme for more advanced layouts and templates, not just blocks.

    #260996
    This reply has been marked as private.
    #260994

    Hi Ben,

    I was just asking out of curiosity and wanting to know what is the breadcrumbs shortcode specifically – [breadcrumbs]? 🙂

    We added our own for Title, Feature Image and Caption for pages going a little rogue on the standard styling.

    cheers

    In forum: Kadence Theme
    #260981

    Hi There! Having a couple issues with various Woo Extras…

    1) Advanced Product Gallery – I have this enabled. For some reason when you click on the main image I get two different modal/lightbox pop ups that land on top of each other. So you hav to click out of two different modal sliders to get back to the main page. If I disable this “extra” and go back to default woo product page slider I do not have this issue.

    2). Advanced Product Gallery (issue #2) – I have the “Show slide arrows on product image?” turned off(false)… which remains true on all of my products except for one product. Elderberry Gummies. The arrows show on that product page but not the others.

    3). Advanced Reviews – I would like to switch to advanced reviews… but the “convert reviews” button/action is not actually converting my reviews. So when I toggle the feature on… all of my old reviews disappear.

    Really appreciate any help or insight here! My website is live at http://www.livesyzygy.com to check this out.

    #260971

    Hello Ben,

    That is my mistake! My shop has product categories and subcategories, and I have just noticed that off canvas sidebar with product filteres displays only on product catalog pages with product list and not on product categories list. That is why I have initially thought that it is not showing at all.
    However with regular sidebar I am able to display product filters on product catalog with product categories and subcategories as well. Is it possible to achieve this for off canvas sidebar?

    Kind Regards,
    Inga

    #260968

    Hello Team Kadence!

    Happy Thanksgiving!

    I’m hoping you can help me with something. I need to target several metaboxes (updating the description field/options for sidebars). I’m using this as my function in my child theme:

    function change_sidebar_metabox() {
    $cmb = cmb2_get_metabox('bloggrid_metabox');
    if (is_object($cmb)) {
    $cmb->update_field_property('_kad_page_sidebar', 'name', __('Show/Hide Sidebar', 'virtue'));
    $cmb->update_field_property('_kad_page_sidebar', 'desc', __('Without the sidebar, the layout will be fullwidth.', 'virtue'));
    $cmb->update_field_property('_kad_page_sidebar', 'options', array(
    'yes' => __('Show Sidebar', 'virtue'),
    'no' => __('Hide Sidebar', 'virtue'),
    ));

    $cmb->update_field_property('_kad_sidebar_choice', 'desc', __('If you have elected to hide the sidebar, choosing a sidebar will not change anything.', 'virtue'));
    }
    }

    add_action('cmb2_init_before_hookup', 'change_sidebar_metabox', 21);

    function change_sidebar_metabox2() {
    $cmb = cmb2_get_metabox('blogliist_metabox');
    if (is_object($cmb)) {
    $cmb->update_field_property('_kad_page_sidebar', 'name', __('Show/Hide Sidebar', 'virtue'));
    $cmb->update_field_property('_kad_page_sidebar', 'desc', __('Without the sidebar, the layout will be fullwidth.', 'virtue'));
    $cmb->update_field_property('_kad_page_sidebar', 'options', array(
    'yes' => __('Show Sidebar', 'virtue'),
    'no' => __('Hide Sidebar', 'virtue'),
    ));

    $cmb->update_field_property('_kad_sidebar_choice', 'desc', __('If you have elected to hide the sidebar, choosing a sidebar will not change anything.', 'virtue'));
    }
    }

    add_action('cmb2_init_before_hookup', 'change_sidebar_metabox2', 21);

    It works well but so far, I need to add it for each and every template I want to target (in this case both bloggrid_metabox and bloglist_metabox). From the CMB2 docs, cmb2_get_metabox should accept an array (unless I’m misunderstanding it). But no matter what I do, I just get a config error (id required) so I figure I’m doing it wrong or misunderstanding how to set this up. Setting them up separately causes the IDE to freak out about duplicate code so trying to combine the functions (and streamline the code and maintenance of said code). Is this something you can help me with? Thank you!

    #260967

    If you decide to switch to Ascend all of your content will transfer, but many of your settings will change.
    Because you’re considering switching themes, have you looked into our newest theme, Kadence? It also allows you to set a custom page title background image for each page/post and it has tons more features and functions. https://kadence-theme.com/
    Let me know if you have any other questions about that!

    Regards,
    Hannah

    #260964

    Hi Hannah, I have it set as full width. The same banner that’s on my front page is also on my shop page. You can see the difference in widths. I just can’t get it to go full width on the shop page without the whole page being full width, and that makes the category thumbnails go full width too. Just don’t know how to keep the categories in block form and the banner in full width.

    If you want admin privs let me know and I’ll set you up. I have no private info yet anyway as I wanted to fully build this out first before adding actual content so it’s safe for you to go in and tinker 🙂

    Elaine

    #260960

    Hello,

    I’m using the Modal block on a website i’m working on. On the button itself i’m just showing an Icon and would like to have a description text display when you hover over the button. Is this possible? I cant seem to find it.
    On this page under the large image i have 4 Modal buttons.

    Thanks

    #260948

    Hi Hannah,

    Thanks for this, yes I just wanted to decrease it. I think what’s complicated my issue here is that the home page uses a different logo to the rest of the site and I’ve had to use css to swap it out on home. I think its all good now!

    cheers.

Viewing 20 results - 5,741 through 5,760 (of 53,646 total)