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 '
-
AuthorSearch Results
-
In forum: Virtue Theme
In reply to: Page Editor
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?
In forum: Virtue ThemeIn forum: Virtue ThemeTopic: Page Editor
In forum: Virtue ThemeIn reply to: Footer not showing
February 28, 2015 at 4:42 pm #32696Hi, 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!
In forum: Virtue ThemeFebruary 28, 2015 at 4:28 pm #32695You 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
In forum: Virtue ThemeIn reply to: Gallery Carrousel sliding/animated
February 28, 2015 at 4:14 pm #32691You 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 ThemeTopic: Footer not showing
February 28, 2015 at 3:33 pm #32687Hi, 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 ThemeTopic: Motionless Slider
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?
In forum: Virtue ThemeTopic: Background and borders
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. *Login to see link
Kind regards, PaulIn forum: Virtue ThemeDue to german laws, I need to add the following lines to every place where there is an “Add to cart” button (e.g. on *Login to see link
inkl. 7% MwSt.
Lieferzeit: ca. 2-3 Werktage
zzgl. VersandkostenThis is done using the plugin *Login to see link
Can I have for all products on *Login to see link 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.
In forum: Virtue ThemeIn reply to: Gallery Carrousel sliding/animated
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.
In forum: Virtue ThemeFebruary 27, 2015 at 11:16 pm #32662Hey,
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 ThemeIn reply to: Site Broke After Update
February 27, 2015 at 11:09 pm #32661Hey,
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 ThemeIn reply to: Slight border around boxes
February 27, 2015 at 11:05 pm #32660You 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
In forum: Virtue ThemeFebruary 27, 2015 at 10:45 pm #32658This 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
In forum: Virtue ThemeIn reply to: Add a continue to shop button
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>'; }In forum: Virtue ThemeHi 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!
HannahIn forum: Virtue ThemeIn reply to: Color Loss in Category Image
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.
In forum: Virtue ThemeHi!
1. Is there a way to not have the footer show on select pages? i.e. this page-*Login to see link
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. *Login to see link
Thanks for all your help!!
LieselIn forum: Virtue Theme -
AuthorSearch Results


