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

    In reply to: Category description

    #110672

    Last question.
    It works on category page, what about main page?

    I`d like to have first products and some text below.

    #110670

    Is it possible to duplicate the staff page in order to be able to manage separate groups? On my site there are three separate groups: cast, team, and friends. See for the basic layout so far.

    Also, as you’ll see, no images are being shown when I use the shortcode to insert the staff page into a row on the home page.

    Thank you.

    #110657

    Ben,

    I have a similar need, but with a few extra complexities. (This CSS solved MOST of my problem, but…)

    This CSS worked to remove all Add To Cart buttons, but it also hid the variable selections/drop-down on the individual product pages. I want to hide the Add To Cart buttons everywhere, but I also want users to be able to still choose options to see the various pricing for each option on the individual product pages – I just don’t want them to be able to Add To Cart.

    Is there a variation on this CSS that displays the variation options (drop-downs on individual product pages) while still hiding the Add To Cart button? Maybe an override using ‘important’ directive in CSS or something?:

    .product_item .kad_add_to_cart, div.product form.cart{
    display:none;
    }

    Also, is there some CSS that can be added for the addition of a text line in place of the Add To Cart button on the individual product pages, such as: ‘Online shopping is not available at this time. Please call 1-800-PRODUCT for more information.’? This would be global for all individual produce pages.

    Thanks in advance!
    -Dan

    #110632

    Hello,

    For all pages (except for main blog content on home page), I have removed the 15px padding at the top so that there is no space between the menu and the title/content. However, when shrinking the browser to view “mobile mode”, when the mobile menu kicks in, there is padding at 15px again. Can that padding be removed? I do not want the home page/blog content to be affected, only pages and archive categories.

    Page example: http://www.bradtruxellphotography.com/categories/
    Home Page: http://www.bradtruxellphotography.com

    Thanks for the help,
    Brad

    #110628

    Hello,
    I would like to be able to change the image menu font/color/size and delete the hovering grey box found in the top left of all of my photos within the image menu on my home page. Where and how can I do this

    In forum: Virtue Theme

    In reply to: Woocommerce problem

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

    In reply to: Woocommerce problem

    #110614

    polylang and page-builder works together very well with virtue theme

    This has nothing to do with the theme. They work fine unless you are using a custom post type. Then they don’t work.

    You can either remake your page without pagebuilder. Or switch from polylang to WPML or wait for the next page-builder version. (they finally seem to be doing something about this, see here: https://github.com/siteorigin/siteorigin-panels/issues/258)

    If it was something I could control it would be fixed a long time ago but I don’t control those plugins.

    Ben

    #110610

    I’m going to suggest you go to theme options > shop settings and turn off the theme image sizing.

    Or with two columns your better off not using a carousel and instead using a shortcode

    
    [featured_products per_page="2" columns="2"]

    Ben

    In forum: Virtue Theme

    In reply to: Woocommerce problem

    #110607
    This reply has been marked as private.
    In forum: Pinnacle Theme
    #110600

    Hide page title on the home page is controlled in the theme options > home slider.

    Ben

    #110598

    Check out this: https://www.kadencewp.com/home-page-pinnacle-premium/

    Ben

    In forum: Virtue Theme
    #110588

    Your post “home” is like the posts archive home not site home.

    See here: http://themes.kadencethemes.com/virtue-premium/basic-image-gallery-post/

    home (site home) > blog (blog home) > photos (blog cat) > post.

    If I wanted to I could make that “blog” page be any page through the theme options but that doesn’t ever define the front page of your site.

    Ben

    #110587

    Sorry, I didn’t notice you were using that plugin. I think that there is a way to add CSS classes to the shortcodes for the rows, but I’m having a hard time figuring out how. You may also be able to add inline styles, but I’m having a difficult time figuring that out as well. Ben or Hannah will have a good solution when they see this.

    For that image, go back into the design tab and set “Background Image Style” to parallax. The tutorial I posted above points this out at the bottom of the page.

    You’re using the “boxed” layout for your site, so your slider will be constrained to the width of the page. There may be some CSS to break it out of the container to be full width. I’m working on it right now, but I’ll flag this thread so the theme dev can take a look.

    In forum: Virtue Theme

    In reply to: Category description

    #110586

    Hey,
    So you can either create a custom page like hannah suggested. See woocommerce shortcodes here: https://docs.woocommerce.com/document/woocommerce-shortcodes/

    There is one for a category of products. This means not editing your category itself. You make the custom page then you use a plugin like this to redirect from the category to your custom page.

    https://wordpress.org/plugins/safe-redirect-manager/

    Your other option would be to use a child hteme. You would need to add some hooks in the child functions.php file.

    remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 ); 
    add_action( 'woocommerce_after_main_content', 'custom_woocommerce_taxonomy_archive_description', 10 ); 
    function custom_woocommerce_taxonomy_archive_description() {
    	if(is_product_category()) {
    		woocommerce_taxonomy_archive_description();
    	}
    }

    Ben

    In forum: Virtue Theme

    In reply to: Woocommerce problem

    #110580

    are you using pagebuilder? because you can’t use page-builder and polylang. This is known bug that the plugin owners have not fixed yet.

    Deactivate pagebuilder, save your permalinks then try.

    Note that WPML doesn’t have this issue.

    If your not using pagebuilder then send me a temp login to your site using Set as private reply.

    Ben

    #110579

    Hello,

    I was looking for a snippet or other way to configure breadcrumbs for Woocommerce. We are looking to not display the product name in breadcrumbs when on a product page. We tried “kad-breadcurrent” display none and that worked overall. But we would like to display for all pages, except when on a an actual product page.

    Thanks in advance.

    #110574

    In your theme options > theme extensions turn on your header and footer scripts. reload the page and go to theme options > header and footer scripts.

    Then add this js into the footer scripts:

    <script type="text/javascript">jQuery(window).load(function () {
    jQuery(".accordion-toggle").click(function() {
    var $link = jQuery(this).attr('href');
    setTimeout( function () {
    jQuery(window).scrollTo($link, {offset:-200});
    }, 100 );
    });
    });
    </script>

    Ben

    #110573

    Hi Kevin,

    I cannot use Page Builder, I use Polylang and if I activate Page Builder it will break my site (multiple 404 errors).

    I’d like to have the possibility to assign a color background to the column shortcode like for text box, [kt_box opacity=”1″ background=”#eeeeee”]<p></p>[/kt_box], but this does not work with column shortcode. I also tried to use the usual code for background in span, but it also does not work.

    As for parallax, I saw that it is possible to build it with Kadence, but it doesn’t work, see it here https://www.setthings.com/ro/editare-publicare-carti-online/ (the third big image with the text “Text layer”). Where am I wrong?

    Also, I have created another Kadence slider with a single slide at https://www.setthings.com/ro (top image) and I set it full width, but this option also does not work.

    Thank you,

    Nicolae

    #110569

    This was working fine until I upgraded to secure ssl certificate and did a mass search and replace from http: to https: Not sure if this is the cause but I didn’t notice any problems until this change.

    Now product and sale carousels have extra space between image and product name. There are only 2 products in this store.

    Thanks in advance for your help!

    #110567

    Hello Keith,

    This is something that would require some coding to accomplish. I am pretty sure that it will be a script that takes care of this, if it’s possible, so lets start by going into Theme Options> Misc Settings, and enabling Header/Footer Scripts. Save your settings, and refresh the page. You should see Theme Options> Header/Footer Scripts enabled on your site now.

    We’ll have to wait for Ben to tell us whether or not he has a script for this, but having the header and footer output enabled will speed things up.

    -Kevin

Viewing 20 results - 30,221 through 30,240 (of 53,646 total)