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 - 47,001 through 47,020 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Page Editor

    #32703

    I am saying that the emoticon option was in the wp page editor tool bar with the Virtue Theme and they are no longer there as an option. I was asking why I cannot see that option any longer. I upgraded from free to Premium and am thinking it is possible that it was in the free version and not premium?

    #32701

    How can i add “thanks page” when a customer finish to purchase products in my website?

    In forum: Virtue Theme

    Topic: Page Editor

    #32697

    Are they called “emoticons”? (to place small images, envelope, heart, etc) is missing from page editor. Was a round face in toolbar

    In forum: Virtue Theme

    In reply to: Footer not showing

    #32696

    Hi, I already fix this problem. i just set the home page to fullwith.

    By the way I have another question how do I changed the footer title font style and size and also i want my footer to display only at home page and disable in other pages.

    Please help. thank you!

    #32695

    You would have to hook into the loop with a function. Then you can use another function to hide the add to cart on the shop page… this should work:

    remove_action(  'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10  );
    add_action(  'woocommerce_after_shop_loop_item', 'kt_woocommerce_readmore', 10  );
    function kt_woocommerce_readmore() {
    	echo '<a href="'.get_permalink().'" class="button kad-btn headerfont kad_add_to_cart add_to_cart_button product_type_simple">Read More</a>';
    }
    

    Add to your child theme functions.php file.

    Ben

    #32691

    You can’t breakup page content but you can use the home widget area and make that another content area you control through the widgets page.

    You can also use this shortcode to add a custom carousel anywhere:

    [custom_carousel columns=4 speed=9000 scroll=1]
    
    [carousel_item columns=4]
    Item 01 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 02 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 03 - Add your info here
    [/carousel_item]
    
    [carousel_item columns=4]
    Item 04 - Add your info here
    [/carousel_item]
    
    [/custom_carousel]

    Ben

    In forum: Virtue Theme
    #32687

    Hi, Please help again, my footer area are not showing when i try to preview in a browser and any modification i made in the footer are not changing or saved.
    I have already configure my footer type in Homepage style in theme option and nothing happen. Thank you!

    In forum: Virtue Theme
    #32680

    When I first upgraded to premium, the slider at the bottom of this page was animated. In fiddling with something at some point, I killed the animation, but didn’t notice what or when. I don’t know what the area is called, nor what slider might have been in use, nor how to get it back. I’d also like to see what else might be available for that location. Could someone point me in the right direction?

    #32679

    Hi there.
    I have used a layout builder in my top bar widget but have a few issues with the styling. I have my backgrounds set to clear and no borders. But despite this when viewed the back grounds are white and the boxes also have a white border. I have tried all the style settings but cant seem to rectify the problem. Could you please advise. Here is the link to the home page.
    Kind regards, Paul

    #32678

    Due to german laws, I need to add the following lines to every place where there is an “Add to cart” button (e.g. on
    inkl. 7% MwSt.
    Lieferzeit: ca. 2-3 Werktage
    zzgl. Versandkosten

    This is done using the plugin

    Can I have for all products on only a “Read on” (“Weiterlesen” button like on Sold-out-products), no more “Add to cart” or “Select options”. I am talking about the button identified by “kad_add_to_cart add_to_cart_button” css classes. This way I could get rid of these 3 “legally necessary” lines on the archive pages.

    I could not find an option for this on the theme options?

    If not possible, maybe getting rid of the “kad_add_to_cart add_to_cart_button” button on the archive pages altogether might be a (not-so-nice) alternative.

    I have a child theme, so working with an JS or CSS hack might be doable.

    #32665

    Thanks Hannah,

    Can you break up the Homepage with Page Content, Custom Carrousel, Page Content?

    How does editing the page work.

    Or, is it possible to do an autoplay Carrousel within Page Content using Page Builder and a Widget?

    I guess I am asking which approach is better.

    #32662

    Hey,
    2. if you want to control the sidebars you have to use a function. For BBPress you would add this in your child theme functions.php file:

    add_filter('kadence_display_sidebar', 'bbpress_sidebar');
    function bbpress_sidebar($sidebar) {
      if (is_bbpress()) {
        return false;
      }
      return $sidebar;
    }

    That would turn the sidebar off for all bbpress pages. iThemes Exchange would probably be similar haven’t used it and it’s not the supported ecommerce plugin but using that function you would just change the conditional code “is_bbpress()” to make whatever iThemes Exchange has.

    Ben

    In forum: Virtue Theme
    #32661

    Hey,
    So this is a pagebuilder issue with an older verison of pagebuilder classes clashing.

    Make sure you have the latest version of pagebuilder. Then go into the rows on your site and make sure you have set the rows to be full or full stretched. Check your classes and make sure those are empty (unless you have something there on purpose).

    Ben

    In forum: Virtue Theme
    #32660

    You have css coming from the plugin “customer area” it’s adding a boxshaddow on the class .panel which is used in pagebuidler (a lot)

    I would add this css in your theme options and override:

    .panel-grid .panel {
    -webkit-box-shadow: none;
    box-shadow: none;
    }

    Ben

    #32658

    This is more tricky here is what you would need to do:
    You would need to set up the cells in pagebuilder as if every row had the question in the left column and the answer in the right (basically think mobile first). Once you have it set up for mobile with the questions on top of the answers then you can use a little css to make the desktop different and have some on the left and some on the right.

    Ben

    #32654

    For completeness, Ben graciously supplied the following code for my page which adds the button in a different place; next to the button “Proceed to Checkout” which, IMHO, looks nicer:

    // add button, Continue Shopping, on cart page
    add_action( 'woocommerce_proceed_to_checkout', 'kad_keepshopping', 4 );
    function kad_keepshopping() {
    	echo '<a class="button kad-btn-primary wc-backward" href="'.apply_filters( 'woocommerce_return_to_shop_redirect', get_permalink( wc_get_page_id( 'shop' ) ) ).'">'.__('◄ Continue Shopping', 'woocommerce' ).'</a>';
    }
    #32650

    Hi Liesel,
    1. Yes, with css and a page-id. Try this for that specific page:

    .page-id-170 #containerfooter {
    display: none;
    }

    Just paste it in your custom css box in theme options > advanced settings.

    2. In Theme Options > Shop Settings set the Product Sidebar Default to “No, do not show.”

    Hope that helps!
    Hannah

    #32642

    I just found, and favorited your Etsy store; I’m Meadowcroft Dyeworks there, too. People make the most remarkable things out of polymer clay. It looks awesome embellished with those little seed beads; lovely. You’ve been there for a long time, too! I was much slower to learn about it.

    I fiddled with that plugin just a little, and was able to get the category images to improve quite a bit, but the main images on the product pages didn’t budge. I think I may rename the image directory and create a new one, ftp all the original images to the new directory, and see if I can force this engine to create all the images, not just the smaller ones. I want to look over the other links you gave me, too. Thanks for those.

    #32636

    Hi!

    1. Is there a way to not have the footer show on select pages? i.e. this page-

    2. In using both iThemes Exchange and BBPress, when they generate their own pages, they are picking up default page that has the main sidebar on it. How do I change the default page style, that they are obviously using, so it does not show a sidebar, but is full width? ie.

    Thanks for all your help!!
    Liesel

    #32635

    This page demonstrates what I want to do with Virtue’s custom tabs. Can I do this for all my (approximatly 100) existing / remaining product pages at the same time?

Viewing 20 results - 47,001 through 47,020 (of 53,646 total)