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 'child theme'
-
AuthorSearch Results
-
In forum: Virtue Theme
Topic: styling not showing
Hi,
I created a website on my localhost and uploaded the all the files (themes included) on to my server and created a database (which is working).
The styling I created for the website is not showing. I don’t have a blog page, just 2 static pages, the homepage has a Kadence slideshow.
I am using a child theme of Virtue and it is the active theme.
This is the address: http://www.zimkids.ca
An help would be much appreciated.
In forum: Virtue ThemeTopic: Icons on TOP of Menu Item
Good morning, currently using WordPress 3.9.1 and Virtue Theme Premium 2.5.3 w/ Child Theme. Currently the Menu Icons now show up to the left of the menu title, what would be the best manner in which to have the icons display ABOVE the menu item as was the case with Virtue Free?
In forum: Virtue ThemeIn reply to: Changes to the Product page
August 4, 2014 at 2:19 pm #14532Yea so you can change the text using a customizer plugin like this: https://wordpress.org/plugins/woocommerce-customizer/
But the action behind it the “add to cart” can’t be changed without doing some editing in the woocommerce template files in the theme. If you know code and feel comfortable working in a child theme you would need to edit the loop in the file: woocommerce/loop/add-to-cart.php or creating a custom filter function for the woocommerce_loop_add_to_cart_link function.
Ben
In forum: Virtue ThemeIn reply to: Create Custom Page Template
Ben,
I added your code to my previously empty functions.php file in my virtue-child theme and it seems to break the site. Pages appear to load but also appear completely blank.Here was the content of my functions.php file which I had to remove to allow continued editing of the site ….
<?php //Add your custom functions here. <?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page'); function kad_custom_fullwidth_page($sidebar) { if (is_page_template('page-custom-fullwidth.php')) { return false; } return $sidebar; } ?>thanks
MikeIn forum: Virtue ThemeIn reply to: Create Custom Page Template
August 4, 2014 at 12:15 am #14484Yea so side is determined by a function because of how the theme wrapper works, So it’s actually the file name that determines that the sidebar shouldn’t show. It’s tricky but genius. Here is the function you can add to your child theme functions file that will all you to create a full width page.
<?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page'); function kad_custom_fullwidth_page($sidebar) { if (is_page_template('page-custom-fullwidth.php')) { return false; } return $sidebar; } ?>Ben
In forum: Virtue ThemeIn reply to: Can I use existing data for MPN, such as a sku
August 4, 2014 at 12:11 am #14483I’m not sure what your trying to do? Where did you get this code? If you plan on added functions your should do that in a child theme.
https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip
Ben
In forum: Virtue ThemeTopic: Create Custom Page Template
I’ve been using the free version for a while and just upgraded to premium. Even though I followed the instructions on importing customizations, because I did not use child themes, I lost a lot of other customization – my own fault, I know. So I’m rebuilding the site options now.
Problem is, my home page at Pixiespocket.com is set up to show latest posts, but it is not showing the blog posts. When I hover over where the blog post grid should be, there is data there. A Pinterest button shows up where the images should be, and the links are clickable and take me to the posts – it is all there, but invisible.
I’ve tried going to Theme Options and messing around with what shows. The “Page Content” shows up, the sidebars are there, menu, header….everything but “latest posts”
Here’s another thing that might be related or might not. I tried to set the Home Page with a “Latest Posts” slider. When I viewed the home page after hitting “save,” the header flashes up for a second and then disappears. I don’t have adblock or anything like that on, either.
What have I done? 🙂
AmberIn forum: Virtue ThemeIn reply to: title above picture
August 1, 2014 at 11:59 pm #14371Hey Theo,
So the theme design is to have the image above. There isn’t any built it option to change that. You can use a child theme and edit the blog loop files to change the way post excerpts are handled.The file you would want to edit is templates/content.php
Ben
In forum: Virtue ThemeIn reply to: randomise home page portfolio Carousel?
July 31, 2014 at 9:15 am #14222No it’s not possible. And your not going to find a widget that does what the post grid does for a custom post type. Your best option is to copy the post grid and make your own widget in a child theme.
Ben
In forum: Virtue ThemeIn reply to: Disable Sidebar On Certain Pages?
July 30, 2014 at 6:37 pm #14181So that plugin looks like it’s using it’s own custom post type. And the problem is the template for it is not compatible with virtue. it’s calling the header and footer in twice on the page. To make this compatible you would have to create a child theme then override some of the plugin templates so it didn’t call the get header get footer functions. I don’t know the plugin or how it’s coded so you would need to talk with the developers about what templates they are using that are calling header and footer.
Ben
In forum: Virtue ThemeTopic: Adjust Home Page for mobile
I am using a child theme and have added some css to remove my footer from devices below 780 px width.
The display of my home page
temp.avmi.net
looks good on an iPhone in portrait mode but in landscape mode, the second row of images (configured using the page builder plugin) align to the left and do not fill the screen.
Can you suggest some css to enlarge the second row of images to fill, or at least align center on the screen, in displays less than the iPad landscape and greater than the iPhone portrait?
Thanks
MikeIn forum: Virtue ThemeIn reply to: Content in Category
July 30, 2014 at 8:08 am #14125Hey Francisco,
This is possible but it would require editing the code. You would need to use a child theme: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zipAnd copy the virtue_premium/woocommerce/archive-product.php
you would move lines 55-58 down to the line just above the closing div on the last line.
Ben
In forum: Virtue ThemeIn reply to: "Staff"
July 30, 2014 at 8:01 am #14123No, it’s part of the theme. I supposed with a child theme you could run a remove function:
remove_action( 'init', 'staff_post_init' );Ben
In forum: Virtue ThemeIn reply to: Changing style of "Out of Stock" Tag
July 29, 2014 at 5:13 pm #14089Yes and in there perspective folders so you need a woocommerce folder in your child theme and a loop and single-product folder inside that.
BenIn forum: Virtue ThemeIn reply to: Changing style of "Out of Stock" Tag
July 29, 2014 at 5:12 pm #14088Thanks for the quick reply. Am I correct that the two php files referenced should be copied to my child theme folder?
In forum: Virtue ThemeIn reply to: Stop striping html from Image menu desciption
July 29, 2014 at 4:14 pm #14067No, I’m guessing you are wanting to use the widget? It’s a function in the widget save process so there isn’t a place to change it though a child theme. Your best option is to use the shortcode. Or if you are working on the home page use the theme options.
Ben
In forum: Virtue ThemeIn reply to: Virtue Google Maps Widget does not show maps
July 29, 2014 at 4:11 pm #14064Looks like you are using a child theme, in the footer you’ve changed some stuff or added some stuff but either way the action to get all the javascript files is missing? Can you check and make sure you didn’t remove the wp_footer() call?
Ben
In forum: Virtue ThemeIn reply to: google webmaster tools
July 29, 2014 at 1:09 pm #14045you should only copy “template” files to the child theme that you want to edit. So no function files. And for styles you override any that you want to change in your child theme css.
Ben
In forum: Virtue ThemeIn reply to: google webmaster tools
-
AuthorSearch Results


