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 - 52,321 through 52,340 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #6824

    Hi Ben,

    I have found a little problem with style sheet. You add this in virtue.css:
    .gallery {
    margin: 10px 0;
    }

    I have page called “Gallery” and on this page I have 10px margin from top, because body has class name “gallery”.

    I think this could be a problem not only for me. Page “Gallery” might be on many sites.

    Sebastian

    #6821

    I have set up a header background but I do not want it to show on the home page. How do I remove it from the home page only?

    In forum: Virtue Theme
    #6818

    Hey Ben,
    Is there a way to add random separators throughout the page layouts? Either solid divider lines or ———- (this type of thing). Example is on this site (

    In forum: Virtue Theme

    In reply to: Column Style

    #6816

    Wow…should have downloaded the page builder much earlier. Really good stuff. Thanks again man.

    #6813

    Hi, there is way to reduce gap and line between menu section, slider, and shop section, like in your demo ?

    My site screen:

    #6809

    Hey,
    So for the revolution slider use the feature page template: http://docs.kadencethemes.com/virtue/#featurepage

    As for the sharing plugin if you can’t turn if off in the settings you might try a different sharing plugin, I’m not a fan of jetpack so I don’t really know its options. There are others other there that might give you control over certain pages. else you can hide it with this css:

    .post-type-archive-product div.sharedaddy{
    display:none;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Column Style

    #6807

    You can with some extra css or with like the virtue: info box widget and Page Builder: https://www.kadencewp.com/using-page-builder-virtue-premium/

    If there is something you want specifically post a link and I can help with the css.

    Ben

    #6804

    Hello Ben.

    U can said me how i can use Slider Revolution in all pages?. But i wanna it up the name Page, like in Home Page, when i try put one Slider in other page it is under the name page and more littel. Here u got a example: i want the slider up “Diseños Di-Poker”, in header.

    I got another problem, but i don´t know if u can help me about this. Is imposibble for me remove share button in Shop Page: U see, under the name “Tienda”. In all pages i found how remove that buttons, but not in shop, buttons are from JetPack Plugin. I testing and testing diferent options plugin configuration and nothing, in some configuration, yes i remove it but all change in another pages.

    I not undestand why i configurate plugin good, no share button in all pages, but omg, share buttons in shop page. I not undestand :S. Is posible some easy code for remove it in that page?

    Thanks for all.

    In forum: Virtue Theme

    Topic: Column Style

    #6802

    Hey Ben,
    Is there a way to style the individual columns after inserting on a page? Border, background, etc?

    #6798

    It would be great if user could duplicate portfolio posts, the same way user can duplicate blog posts. Is there a way to add some code to make a “duplicate” command in the portfolio post editing page? – Rodney

    #6794

    Hey,
    we have successfully added the featured products on the front page, yay.
    But they are really big, and we would want the woocommerce products smaller on the page. So either add a bigger column width, have 5 products on the front page or what methods would you suggest?

    (Here’s the link to how they look: testing.sofialangenskiold.com)

    In forum: Virtue Theme
    #6792

    Its curious because in my live web page the revolution slider works….

    #6789

    Hello,

    After activate the revolution slider plugin the left menu show up in the admin panel, but when i press the Revolution Slider Menu it shows a blank page and can’t add a slider…. i’m working on local xampp.

    Thanks

    #6779

    So now I see the correct code in the page source of http://adventuregeardownload.com/stocking-stuffers-for-outdoor-enthusiasts/

    If that page isn’t working on facebook create a new one as a test and try that, facebook does it’s own caching and it could be a while before it updates.

    Ben

    In forum: Virtue Theme
    #6773

    Not a bad idea, there isn’t this option right now but it’s something I’ll consider adding in the next update. Right now you can add widgets to pages and posts using the pagebuilder plugin and that would allow you to add different social widgets to different pages.

    Ben

    #6771

    Hi Ben,

    Is there a shortcode for the social widget that comes with the Virtue theme? I’m looking to add different social buttons for different pages/people. Thanks!

    #6766

    Try this:

    function remove_loop_button(){
    if(is_user_logged_in()){
    }else {
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }
    }
    add_action('init','remove_loop_button');
    
    add_filter('woocommerce_get_price_html','members_only_price');
    
    function members_only_price($price){
    if(is_user_logged_in() ){
        return $price;
    } else {
    	return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="http://www.mydomain.com/registration">Register</a> to see price!';
    }
    }

    Ben

    #6762

    It’s taken us a while to figure out what’s wrong, but I think that the categories are loading as described above, but are being moved off what I can see on the page (via css? weird margins?).

    Here is an example — http://printabelle.com/testing123 — you should see the categories and thumbnails load briefly, but then disappear. The code for the thumbnails appears in the source code.

    Do you have any ideas how to remedy this?

    #6757

    Try it again with the code. It seems not to be working

    function remove_loop_button(){
    if(is_user_logged_in()){}else
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }
    add_action('init','remove_loop_button');
    
    add_filter('woocommerce_get_price_html','members_only_price');
    
    function members_only_price($price){
    if(is_user_logged_in() ){
        return $price;
    }
    else return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="http://www.mydomain.com/registration">Register</a> to see price!';
    
    }
    #6756

    This is the code for hiding the add to cart button and prices for woocommerce I am using for when a user is not logged in. Take a look at the image and see where the price is but there is no add to cart button when the user is logged in with the code provided below. Any ideas? Works great accept for that little flaw.

    function remove_loop_button(){
    if(is_user_logged_in()){}else
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }
    add_action('init','remove_loop_button');
    
    add_filter('woocommerce_get_price_html','members_only_price');
    
    function members_only_price($price){
    if(is_user_logged_in() ){
        return $price;
    }
    else return '<a href="' .get_permalink(woocommerce_get_page_id('myaccount')). '">Login</a> or <a href="http://www.mydomain.com/registration/">Register</a> to see price!';
    
    }

    imageshot

Viewing 20 results - 52,321 through 52,340 (of 53,646 total)