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 - 14,801 through 14,820 (of 53,646 total)
  • Author
    Search Results
  • #206903

    Hey Kevin,

    I have the fonts. I am looking for the rollover colors and the grey background with white text on the pulldown. For example, when you mouse over About Us on this page (above this post). I couldn’t do it modifying the colors in the Theme Menu Settings page.

    Our site is here:

    https://acquaterre.com.

    Thanks!

    #206902

    Hello,

    I have inserted this code into a Child Theme’s functions.php to hide the Description and Additional Information tabs in Woocommerce.

    add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );

    function woo_remove_product_tabs( $tabs ) {

    unset( $tabs[‘description’] ); // Remove the description tab
    unset( $tabs[‘additional_information’] ); // Remove the additional information tab

    return $tabs;
    }

    When I only hide the Additional Info tab Elementor works fine. If I hide the Description tab as well I get an the following error –

    “Sorry, the content area was not found in your page. You must call the_content function in the current template, in order for Elementor to work on this page.”

    This error only happens on a product page. All other pages with Elementor work fine. I’ve disabled plugins and purged cache but that did not resolve the problem.

    I don’t have a link as everything is local.

    Any ideas?

    #206900

    I just updated to this:

    function custom_show_sidebar_meta_only_admin( $display, $meta_box ) {
    	if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar' == $meta_box['id'] || 'post_sidebar_metabox' == $meta_box['id'] ) ) {
    		return current_user_can( 'manage_options' );
    	} else {
    		return $display;
    	}
    }
    add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );

    Let me know if you still see it on a vendor.

    Ben

    #206898

    Update this:

    function child_theme_init() {
      if ( function_exists( 'pinnacle_author_box' ) ) {
         add_action( 'kadence_page_footer', 'pinnacle_author_box', 10 );
      }
    }
    add_action( 'init', 'child_theme_init');

    To this:

    function child_theme_init() {
      if ( function_exists( 'pinnacle_author_box' ) ) {
         add_action( 'kadence_page_footer', 'pinnacle_author_box', 1 );
      }
    }
    add_action( 'init', 'child_theme_init');

    Ben

    #206896

    Hi there,

    I am getting lots of spam via the contact form on the contact us page. Is there a way to add a reCapture to this form please?

    Thanks,
    Charlotte

    #206890

    Hi Ben !

    You already did a fantastic job helping me out on another topic to show up the Author Bio Box on Pages (see previous topic here).

    However, I got another request : would it be possible to show the author box ABOVE the comments on pages ? The same way it works for blog posts (such as this one for instance).

    Thanks a lot in advance, your help is greatly appreciated !

    Regards,

    Romain
    Le Meilleur Matelas

    #206887

    haha. I had two instances of the filter running. When I reset the page to “full width” the remaining filter works.

    Thanks!

    In forum: Ascend Theme

    In reply to: Product Search Widget

    #206882

    Hi Kevin

    It looks neater to use the product search than a button. but I’m at a loss as to what to do. I want to enable users to search for my products. If I can’t even search for my products, then how does it work? I don’t want users to search randomly either because I only have x number of products, so when they select, it should come up with those option and take them to the relevant page.

    If these words are cached in my browser then users might have other words cached in their browsers and it would affect the widget?

    #206874

    Hello guys,

    I am trying to copy the layout of the Portfolio Grid template in a shortcode so I can add a widget below it. I’m getting everything except the sortable Types line on the upper right corner (which I like). Here is a link to the page. The first layout on the page is my shortcode and the second is the template default.

    What do I need to add to my current shortcode?

    [portfolio_types]
    [portfolio_posts type=branding orderby=rand columns=3 items=20 ratio=”square” style=”mosaic”]

    #206850

    Hi,

    I have now two sliders [kadence_slider_pro id=”1″] and [kadence_slider_pro id=”2″] at page The second one is english copy of “1”.
    I put Theme Options Home slider Shortcode entry to [kadence_slider_pro id=”1″] and put [kadence_slider_pro id=”2″] to WPML string translations
    but slider doesn´t change at !

    What am I doing wrong?

    Yours,
    Milla

    #206827

    Hi Ben & Hannah,
    I’m attempting to center the table with the mobile app badges on the footer of this site:
    I’ve used the following css:
    .textwidget.custom-html-widget a {
    padding:5px;
    border:none;
    }
    .textwidget.custom-html-widget a:hover {
    background: rgba(45,92,136,0.3);
    border-radius: 10px;
    }
    /* Footer Widget Styling 2018-11-07 2136*/
    .col-md-12.footercol1 {
    float: none;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    align-content: center;
    text-align: center;
    }
    #custom_html-6 > div {
    border:none;
    display: flex;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;

    }
    .footercredits {
    text-align: center;
    align-items: center;
    }
    .footercredits p:nth-child(1) {
    width: 100%;
    }
    footer#containerfooter {
    text-align: center;
    }
    .virtue_social_widget.clearfix {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .footermenu {
    float: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
    }
    .footercredits.clearfix {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    }
    .footernav.clearfix {
    display: flex;
    }

    And I’m finding that if I save the CSS, the CSS appears, then if I save the footer layout, the CSS disappears. If I go back and save the CSS, the footer layout reverts. I’m trying to get the footer into the first full-width column of the last layout such that I can make it absolute center on the page since the other layouts seem to align the content left regardless of which footer widget the content resides in.

    Any ideas as to how to resolve this?

    #206826
    This reply has been marked as private.
    #206823

    see all replys of topic
    ok i am giving all info
    1st i share problem see 1st screenshot – https://i.postimg.cc/Fs6r9jR6/Screenshot-1.png

    then you provide this code to add child theme’s functions.php

    function custom_show_sidebar_meta_only_admin( $display, $meta_box ) {
    	if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar'  == $meta_box['id'] )  ) {
    		return current_user_can( 'manage_options' );
    	} else {
    		return true;
    	}
    }
    add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );

    but after add this code problem not solve then you did it manually.
    screenshot 2 – https://i.postimg.cc/4NpGTjDY/Screenshot-2.png

    #206818

    You could use css, can you post a link? product pages do not show cross-sell products those are shown in the cart.

    Ben

    In forum: Ascend Theme

    In reply to: the_excerpt();

    #206817

    Thanks Ben. Following your advice, I’ve created an ACF custom field (‘acf_custom_field’) for the portfolio introduction. Everything is easier that way.

    On the single portfolio page I use:

    
    <?php the_field('acf_custom_field'); ?>
    

    On the portfolio grid page I use the following code to limit the length.

    
    <?php $custom_excerpt = wp_trim_words( get_field('acf_custom_field' ), $num_words = 30, $more = '...' );
    
    echo $custom_excerpt; 
    
    ?>
    

    My Read More link is a plus icon button, displayed whatever the portfolio introduction is available or not.

    
    <a class="pqna-read-more-link" href=" <?php esc_url( the_permalink() ) ?> "><i class="kt-icon-plus"></i></a>
    

    Regarding the use of ACF fields, there are not searchable by default. I found different solutions on this thread https://support.advancedcustomfields.com/forums/topic/making-acf-data-available-to-wp_search/

    I’m really happy now. Thanks Hannah and Ben for your support.

    Hugo

    #206816

    The amp plugin is not for pages, it will make your posts and products amp. for example: https://www.deals2save.com/product/all-new-fire-hd-8-tablet-hands-free-with-alexa-8-hd-display-16-gb-black-with-special-offers/amp/

    Ben

    #206812

    I was give topic link in previous reply.

    this is link – Previous Topic

    #206811

    Is there CSS to hide the price on upsells and cross-sell products on a product page?

    #206810

    in my settings section it installed a section called

    Kadence Page Transitions Activation
    Plugin activation.

    API License ActivationAPI License Deactivation
    API License Activation

    Activating your license allows for updates to Kadence Page Transitions. If you need your api key you will find it by logging in here: kadencethemes.com/my-account/

    API License Key
    API License email

    #206809

    Just ran the Google Amp Checker

    https://search.google.com/test/amp

    with my domain below

    https://www.deals2save.com/amp

    Tested on: Nov 7, 2018 at 6:38 PM
    Not an AMP page
    The URL is not an AMP page, nor does it link to an AMP page.

Viewing 20 results - 14,801 through 14,820 (of 53,646 total)