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
Can’t find it in a good place. I found the part that renders some gallery markup, but the “carousel” type must trigger some magic that takes over and modifies the markup to turn it into a carousel. Not sure where to make changes that can be done in a child theme.
Wrote a hack, though. This little bit of jQuery will find the images and unwrap them (remove the anchor tag wrappers):
$galitems = jQuery('.carousel_item img'); $galitems.unwrap();It’s ugly, but it’ll do the trick for launch. I’m just not sure where to put it. Is there a file that I can put into my child theme directory that just contains custom scripts? The same way there’s a style.css CSS file that adds new CSS to the base?
In forum: Virtue ThemeIn reply to: Interaction with plugin (BPTPI)
November 8, 2014 at 11:48 pm #22118Hey so if the plugin adds a page template then you would need to use a child theme to fix the template. You would need to talk with the developer about how they are adding that template and how you can override it in a child theme.
Ben
In forum: Virtue ThemeIn reply to: Home page slider
November 8, 2014 at 4:01 pm #22091Hey,
1. In the templates/header.php file. Your stepping into coding, you should use a child theme.2. You can use inline styles right in the text… for example:
<h5 style="color: blue; text-decoration: underline;">Text</h5>3. No, the structure is not there for a style like the image menu.
Ben
In forum: Virtue ThemeIn reply to: How to disable big product picture?
November 8, 2014 at 9:49 am #22057Not without editing the theme, You could use a script and disable the Lightbox but the link would still be there and it would just open a separate page with only the image. The file is virtue_premium/woocommerce/single-product/product-image.php
If you do decide to edit I suggest using a child theme so you don’t lose your changes with an update.
BenIn forum: Virtue ThemeIn reply to: Search Results Page Format
November 6, 2014 at 11:55 am #21926Actually removing the space for a sidebar will require a custom function. you would need to place in a child themes functions file:
add_filter('kadence_display_sidebar', 'kad_sidebar_on_search_page'); function kad_sidebar_on_search_page($sidebar) { if (is_search()) { return false; } return $sidebar; }or you can do a css hack like this:
body.search-results .main { width: 100%; float: none; } body.search-results .kad-sidebar { display:none; }Ben
In forum: Virtue ThemeIn reply to: Search page format
In forum: Virtue ThemeIn reply to: Search page format
ok thanks. I am using a child theme, I’ll take a look. I just thought I might have missed something.
I was also wondering about a couple of responsive things happening on my home page.
I’ve used the Home Image Menu for logos, and it doesn’t really behave responsively, at smaller screen sizes, ie ipad both orientations, parts of the logos are cropped off. I have played with styles in firebug, but can’t find the cause of the problem.
Similarly I wanted to show the portfolio carousel titles all the time, and at ipad vertical size the title sticks out either side of the image up to 50px. There is something generating an element width of 321.5px and the images are generated at 269x269px even though I loaded them at 400x400px?
I just can’t find either style.Thanks again
In forum: Virtue ThemeIn reply to: Search page format
November 5, 2014 at 10:21 pm #21861not without editing the files or using a child theme. There isn’t a built in option to change it.
Ben
In forum: Virtue ThemeIn reply to: change "SKU" to different display name
November 5, 2014 at 10:52 am #21802That is part of the woocommerce plugin, you would have to create a child theme, copy the file: woocommerce/templates/single-product/meta.php from the woocommerce plugin, then add to your child theme in the folder woocommerce/single-product/
Then edit line 23 and change SKU.
Ben
In forum: Virtue ThemeTopic: Responsive Problem
Hi Ben,
I’m racking my brain trying to fix a weird responsive issue.The site looks great on desktop, and was working well on ipad horizontal – showing same layout
and ipad vertical – stacking nicely (icons to 2 rows of 2)and now it’s going to an enlarged version of the ipad portrait layout (mobile menu and stacked), even for ipad horirzontal (1024px)
it’s still working perfectly on the original dev siteL *Login to see link
I’ve tried:
Deactivating all plugins
Activating virtue premium and not child theme
Removing all styles from my child theme style sheet
Using the style sheet from my original dev child themeAnd nothing works.
Is there a setting I might have missed? Something overlooked?
Thanks so much for your time,
Belinda
In forum: Virtue ThemeIn reply to: Icon Menu – sizing and background question
November 4, 2014 at 1:43 pm #21744Hey,
1. 0 isn’t actually an option it’s considered default meaning it doesn’t add an output of 0 padding because 0 is the default for a number input box. If you changed to 1 or like I said 10 it would have an effect. The default in the css is 20 and if you leave on 0 then 20 is what will apply because it’s in the css.
2. Your using the latest post widget which is a sidebar widget. You would have to use a blog shortcode if you wanted content like the home page. Which you don’t need to do, just add the css and use the home page theme options settings.
If the css isn’t working for you then add this:
.home .panel-grid:only-child .panel-row-style-wide-grey, .home .panel-grid:last-child .panel-row-style-wide-grey { margin-bottom: 0 !important; }Ben
In forum: Virtue ThemeIn reply to: Category Filter Query
Hi Ben
Using /shop as the shop page as before.
I have changed the shop page to show subcats in settings in woocommerce, I placed the following shortcode on said page:
[product_categories number=”10″ parent=”0″ ids=”222, 217, 223, 221, 220, 219, 218, 57, 73, 74″ hide_empty=”0″]It is meant to show only the first 10 items and nothing more.
(I tried not setting the shop page in the woocommerce>settings>products bit and the word “SHOP” disappears from the title on page, and it results in the same output).Have I got the shortcode wrong? I think I got this bit right, because when I remove some of the numbers only the right cats show up, but everything below the 10 etc shouldn’t be there.
Any way to override the woo subcat settings – to only show the top level and thats it? Or to get what I am trying to achieve without messing around with the shop page settings in woo – I mean what effect does it have if I do not set theshop page as you suggested, and how to get the “SHOP” title back etc.
Haven’t tried the plugin or child theme yet, hoping to sort it out in the easiest way possible.
Thanks
KavIn forum: Virtue ThemeIn reply to: contact page
November 4, 2014 at 11:58 am #21729You would need a child theme. If the subject format is important to you it’s going to be easier to use a plugin if you don’t know about editing with a child theme.
BenIn forum: Virtue ThemeIn reply to: Icon Menu – sizing and background question
November 4, 2014 at 11:55 am #21726You can adjust the padding in the page-builder row styles, change to 10 or whatever.
I think I see why your getting the overlap.. since your only using 1 row in page-builder and adding the latest posts through the theme options the layout is confused.. add this:
.home .panel-grid:only-child .panel-row-style-wide-grey { margin-bottom: 0; }Ben
In forum: Virtue ThemeIn reply to: logo link to external url
I Will look into child themes.
When I check using fro I see the files are updated. So this works. In WP I do not see the updates in the editor which less me to believe I am updating the wrong file in the wrong location. Any ideas?
I can send you the login details offline if you want to check?
In forum: Virtue ThemeIn reply to: logo link to external url
November 4, 2014 at 12:55 am #21665“I then went into wordpress editor and see the header.php is not updated.” – so your ftp isn’t updating and you can’t save through wordpress editor. Is your themes folder writable?
You should check with your host and make sure you have the permissions set up so you can write files in your themes folder.
by the way, editing the theme is only going to last as long as the next update? how come your not working in a child theme?
Ben
In forum: Virtue ThemeIn reply to: Category Filter Query
November 3, 2014 at 4:40 pm #21632You can also use a custom functions plugin if you don’t want to use a child theme… https://wordpress.org/plugins/custom-functions/
You can also not use the shop page set up your own page and use the woocommerce shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/
Ben
In forum: Virtue ThemeIn reply to: Category Filter Query
Thanks Ben had a brief look, that relates to excluding products, I would like to only display certain categories. I will see if I can find any associated info tomorrow, if you know of anything please do point me in the right direction, don’t know how to do child themes, but will have to figure it out as it is something that I am sure I will need.
In forum: Virtue ThemeIn reply to: Category Filter Query
November 3, 2014 at 3:55 pm #21626Hey,
The shop page doesn’t work that way, and jetpack is not referring to your shop loop but your blog loop.You would have to change how the woocommerce loop works, they have this outlined in there docs, You will need a child theme: http://docs.woothemes.com/document/exclude-a-category-from-the-shop-page/
Ben
In forum: Virtue ThemeIn reply to: header.php empty
-
AuthorSearch Results


