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
In reply to: Move menu
July 18, 2014 at 8:31 am #13266Hey so you can add more spacing with css using the css hannah posted and then just changing the number to 100 or whatever you need.
Adding a widget above the area is more tricky, You can use the logo layout 4 in the theme options > main settings and that turned the whole right side into a widget area but the menu drops below.
You can edit the header.php file and add your text into the page. Or you can use a hook function in a child theme. There is a do action right before the menu called:do_action( 'virtue_above_primarymenu' );
BenIn forum: Virtue ThemeWhat would be the cleanest/simplest way for me to make the subtitles use <h2> rather than <p class=”subtitle”>? Is it possible to use a filter in a child theme’s functions.php to change it, rather than overwriting all the page templates in the child theme? I’d rather use <h2> than a <p> so that it ranks higher for SEO use and I can use the H2 font settings to style it. That way H1 is the page title and H2 is the subtitle. I’d also like to add subtitles on all pages that don’t have them, like portfolio item pages, etc.
In forum: Virtue ThemeIn reply to: How to add titles to the grid icon
July 17, 2014 at 12:32 pm #13197Are you using a child theme? Your going to have to edit a theme file and it’s best done if you copy the file into the child theme.
templates/content-singleportfolio.php
line 16
replace:
<a href="<?php echo get_page_link($parent_id); ?>">with:
<a data-toggle="tooltip" data-placement="bottom" data-original-title="Portfolio Page" href="<?php echo get_page_link($parent_id); ?>">Ben
In forum: Virtue ThemeIn reply to: Users with Accounts :: Checkout Email Glitch
July 16, 2014 at 4:00 pm #13139Do you have any woocommerce files in your child theme?
BenIn forum: Virtue ThemeIn reply to: Users with Accounts :: Checkout Email Glitch
July 16, 2014 at 3:47 pm #13136Do you have any woocommerce files in your child theme?
You can add this css to your child theme for the select box background:
.select2-container { background: #fff; }Ben
In forum: Virtue ThemeIn reply to: Users with Accounts :: Checkout Email Glitch
I just updated the theme. WooCommerce has been using the current/correct version. The email glitch still persists.
I’m also having trouble editing the CSS with the background color for the product category footer widgets now with the theme update: http://bicycleway.com/uploads/Screen-Shot-2014-07-16-at-2.39.59-PM.png
Is the child theme-options.css file now required to be separate from the main stylesheet?
In forum: Virtue ThemeIn reply to: Change contactpage language
July 16, 2014 at 12:53 pm #13120No if you use a child theme your edits won’t be deleted. Still I recommend a plugin 🙂 But please do whatever you like,
BenIn forum: Virtue ThemeIn reply to: Change contactpage language
In forum: Virtue ThemeIn reply to: icon and login
http://www.faceslikeyours.com/
I am not even half done, and I privately published the pages, except the home page.
Hope it is ok for you to figure out the problem for me?I am using premium virtue and yes woocommerce.
When I downloaded premium virtue, woocommerce was automatically included?
I have been busy with other stuff after I downloaded first time, so I can hardly remember.
I think I added it when it was prompted?And I think I clicked update on wp-ecommmerce, a few days ago, too when there was a message that said wp-ecommerce was ready.
I don’t know how wp commerce and woocommerce go together?I have “Log In” page, “Log Out” page, and “Login” page, regarding login process.
They are set up automatically from woocommerce?
I had these three pages even before I clicked wp-ecommerce.And I have “reset passwd” page, and “lost passwd” page, too, regarding login process.
“Log In” text on the menu changes to “Log Out” when I am logged in.
And when I am logged out, the text changes to “Log In”.
So, if I add “Log Out” page on the menu, I see two “Log Out” tabs in the menu while i am logged in.
If so, why there is “Log Out” page?
What is the “Log Out” page for?And yes, I am using sticky shrink menu.
That css codes you provided goes into advanced setting under theme option?
I read that i should make changes on child theme but haven’t finished reading about it, so I still don’t know the details.
Adding this code to advanced setting has nothing to do with child theme? meaning it will remain same even when you update the theme?I might sound completely off not knowing the code stuff. 🙂
Thank you very much!In forum: Virtue ThemeIn reply to: Theme automatically adding rel="lightbox"
July 13, 2014 at 9:31 pm #12789Hey,
1. “How can I go about modifying that so I can continue to use my own lightbox?”
You want to remove the rel from the image link? You can do that by adding this line to your child theme functions.php file:remove_filter('the_content', 'kad_addlightboxrel');2. “but there is no documentation about how to incorporate the script into my own pages.”
Can you explain what you mean? What are you wanting to incorporate? The images are already auto done?
Ben
In forum: Virtue ThemeIn reply to: check out page
July 13, 2014 at 9:14 pm #12785You can read about child themes here: http://codex.wordpress.org/Child_Themes
And you can download an child theme basic set up here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip
You would just add the snippet for 5 in the child theme functions file.
Ben
In forum: Virtue ThemeIn reply to: check out page
In forum: Virtue ThemeIn reply to: check out page
July 12, 2014 at 9:15 am #127131. It’s either an option in your paypal settings or you have to use paypal pro. It’s not something the theme can change.
2. add this css
.order-again { display:none; }What do you mean by other products? The page only shows the product you purchased?
3. You would have to edit a woocommerce template file to remove the link. You can use css to make it white so its not confusing?
.order_details .product-name a { color: #fff; } .order_details .product-name small a { color: blue; }4.
.order_details .product-name small a { font-size: 14px; }5. You have to use a custom function, so in your child theme functions file add this:
// Hook in add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); // Our hooked in function - $fields is passed via the filter! function custom_override_checkout_fields( $fields ) { unset($fields['order']['order_comments']); return $fields; }Ben
In forum: Virtue ThemeHi, I just upgraded from the free to premium version and have a question about the icon shortcode. I’m using the icon shortcode in a text widget in the footer. In the free version this shows the icon at the beginning of the line of text but in the premium version it’s adding a <br> between the icon and the rest of the line of text. Where is this <br> being added? Can I suppress it in my child theme?
Here’s my site: *Login to see link
It’s still using the free version. I’m editing the premium version offline. You can see the icons from the shortcodes in the footer under Contact US. They display inline, but on the premium version there’s a line break after each icon.In forum: Virtue ThemeTopic: Wider margins on pages
I would like to have wider margins on each side of the pages – 36px left and right side. I am using the boxed layout and have a child theme but have not been able to find the css to make this change and adding margins to every element doesn’t really work.
I’d also like to have NO side margins on the flex slideshow I have on my homepage.
Hope this isn’t too much – it’s just an overall design preference.
I really like using this theme.
Thanks.
In forum: Virtue ThemeIn reply to: Changing colors prices
July 11, 2014 at 9:35 am #12652ok You can send a romainia translation to me and I’ll add to the theme or you can use a child theme and load the child theme files.
my email: [email protected]
Ben
In forum: Virtue ThemeIn reply to: Changing colors prices
July 11, 2014 at 8:43 am #12647Hey,
1. You can with this css, just make the color whatever you want:.product_price { color: #444; }2. If you are using a child theme then all your edits should be done in the child theme. But for translation you can send to me and I would add to the parent theme for you. or you can add in your child theme and use a function to force wordpress to use it.
http://codex.wordpress.org/Function_Reference/load_child_theme_textdomain
For analytics there are options built into the theme so you don’t need to use a child theme?
Ben
In forum: Virtue ThemeJuly 11, 2014 at 8:27 am #12642Depends on the licensing of the theme, if it’s GLP you can copy the widget into your child theme function. You are the first to ask for one line of the excerpt to show in the sidebar widget. It just doesn’t seem like enough text to be valuable??
Ben
In forum: Virtue ThemeTopic: Changing colors prices
July 11, 2014 at 3:49 am #12632Hi ben
I have two questions.
(1) – If the price can change color from black to another color.
(2) – Every time I upgrade to a new version I delete for example (the translation of the theme, google analytics tracking, etc).
I made a child theme.
ThanksIn forum: Virtue ThemeIn reply to: Pacifico? Add fonts? bigger shadow in boxed layout?
July 10, 2014 at 8:37 am #125651. Sure here is the css:
.boxed #wrapper.container { -webkit-box-shadow: 0 0 10px 5px rgba(0,0,0,.16) !important; box-shadow: 0 0 10px 5px rgba(0,0,0,.16) !important; }2. It’s not easy the redux font framework is complex. You are better off using a child theme and adding a font with css then overriding the theme options. Else there is a redux extension but it’s $100 so not really worth it. I think you would be better off with css. What type of font are you wanting to add?
3. I’m not sure what you mean? Pacifico is an option in the typography settings? You should have 500+ options and pacifico is one of those? Have you tired using the search box in the font family?
Ben
-
AuthorSearch Results


