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 ThemeJuly 10, 2014 at 8:10 am #12561
You can’t add part of the excerpt without editing the widget code. Which is a function so it’s not really possible to override in a child theme. What you would have to do is copy the widget code and rename it into your child theme functions as your own widget. Then add in the function to call the excerpt and only call 10 or so words.
I imagine a plugin that already does this would be easier then going the route to add an excerpt to the virtue widget.
Ben
In forum: Virtue ThemeIn reply to: Custom Page
July 10, 2014 at 7:35 am #12556Not easily You have one route where your using css to hide the header, menu, etc. I made an example here:
The name of the page becomes a class that you then use to target one page:
.no-header-test header.banner, .no-header-test #containerfooter, .no-header-test .page-header {
display:none;
}Here is the result. http://themes.kadencethemes.com/virtue-premium-3/no-header-test/
So then you can create a custom page just with the page content.
Else you can create a child theme, build a base-custom.php coping from the base.php file then build a page-custom.php file.
Ben
In forum: Virtue ThemeIn reply to: Bottom caraousel portfolio types – question
WEll there are two parent categories, ” Surface Pattern ” and “photography” . My portfolios only belong to one or the other, never both. Surface Pattern has some child types in it, and Photography has some child types in it, but if a Portfolio is Surface Pattern it never belongs to any of the Photography child types at the same time… and any portfolio that is Photography only has photography child themes selected. So it SHOULD be straightforward.
In forum: Virtue ThemeIn reply to: Bottom caraousel portfolio types – question
July 9, 2014 at 9:25 am #12501Are there any other categories that are not child categories? The theme is set to get the parent category.
Ben
In forum: Virtue ThemeIn reply to: different appearance of widgets in footer
July 9, 2014 at 7:31 am #12483There are a lot of tutorials about child themes only but it still requires some basics with code. Do you have ftp access to your site?
This css should help your menu:
#nav-second ul.sf-menu>li { width: 16.66666%; }Ben
In forum: Virtue ThemeIn reply to: logo link to external url
July 8, 2014 at 11:27 am #12458You would have to edit the header.php file for that.
line 16, remove this:
<?php echo home_url(); ?>/and add your own link.
I recommend using a child theme and copying the header.php template into it so you don’t loose your changes when the theme updates.
Ben
In forum: Virtue ThemeIn reply to: How to make a sticky Page Header?
July 8, 2014 at 11:21 am #12457Hey this theme isn’t really set up for that. You can make the header sticky with the logo and menu but it would require changing some code and adding some javascript to make the page title sticky.
Are you using a child theme?
Ben
In forum: Virtue ThemeIn reply to: different appearance of widgets in footer
no never used a child theme. are there any tutorials on this please? I really do want that to be an active link.
Also, one niggly thing. In my top navigation bar I have 6 options but if you hover over the right hand side ‘contact’ option, the background colour doesn’t reach the edge and doesn’t seem to fit the page dimensions properly. Is there a fix for that? thanks Justine
In forum: Virtue ThemeIn reply to: Slider on Portfolio page
Thanks for reply.
No it´s for my “Galery-Page”. http://www.werz-fotografie.de/sample-page
I want to have Galery Page with owerview of my albums (wedding, portrait, childern etc.). If you click on that, then you move to the album(wedding, portrait, etc). Your “Landscape slider” looking exactly like what I want.
Actually I have the revolution slider also on Gallery Page, but I want to have it like you have it on your page here:
http://themes.kadencethemes.com/virtue-premium/portfolio/In forum: Virtue ThemeIn reply to: Top Menu Combined
July 7, 2014 at 11:30 pm #12402It’s not really possible without using a child theme and editing code.
You can use the basic one here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zipand then copy over the header.php and header-topbar.php file and make the changes you want.
Ben
In forum: Virtue ThemeIn reply to: different appearance of widgets in footer
July 7, 2014 at 10:13 pm #12391Ok well thats not really possible. The image is a background so can’t have a link. If you want to go that far then I would drop the css and add the image to the footer right in the code. Would require that you use a child theme and copy the templates/footer.php file into the child theme then edit it file to add the image with a link above the columns.
You can download a child theme here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zipMight be more then you want to do though? You ever used a child theme?
Ben
In forum: Virtue ThemeIn reply to: Help! Site broken?
ok, problem solved. i entered through ftp and deleted the part that caused the white-out. Still haven’t managed to edit the check-out page though (the part that i can’t access with check out manager)
So i created a woocommerce folder within the child-theme, and then a check-out folder, there i copied the form-checkout.php. But i can’t find the relevant parts that i have to change. I want to change the name of the fields for address and city…
In forum: Virtue ThemeTopic: Help! Site broken?
I tried to customize the woocommerce check-out page. So i created a child theme and tried using <?php get_template_part( $slug, $name ); ?> to get a folder that i can edit.
Now the site is completely gone. Is it because i activated the child-theme?
What can i do now?
Thanks in advance!
In forum: Virtue ThemeIn reply to: Different logo for different language
In forum: Virtue ThemeIn reply to: Different logo for different language
July 3, 2014 at 3:45 pm #12126Hmm, to do this I think you would need to create a child theme with a custom polylang function in the header, I don’t believe polylang adds an option for this and it doesn’t create a css class in the body to make this possible with css. . . Are you familiar with using a child theme and overriding the header.php file?
The function would look like this:<?php $currentlang = get_bloginfo('language'); if($currentlang=="en-US"): ?> <!-- add english logo here. --> <?php else: ?> <!-- add german logo here. --> <?php endif; ?>Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: theme 4 css refer doesnt work
July 2, 2014 at 9:56 am #12018The only css I see in your child theme is
body{ background: black; }Which wouldn’t show on your page because there are divs above the body with a set background.
Backgrounds can all be set in the theme options > advanced settings.
Something else to note. The theme options css output comes after the child theme output. So while the parent theme is first and child theme is second (meaning it overrides the parent) the theme options is third. So if you have the same selector as the body background in the theme options then the child theme will not show, the theme options will. If you want the child theme to override the theme options you have to use a more detailed css selector like
html body {or use the important tag like
body { background: black !important;}Ben
In forum: Virtue ThemeHello Ben,
Im having a little problem right here, in my page http://www.webtestyonline.pl Ive uploaded theme 4 style, and I cannot override your css in my child theme. Ive done everything right, when Ive set your theme and created child css I tried to change something and it was successfull, but after Ive uploaded theme 4 I cannot refer to css. Do you know why ?
In forum: Virtue ThemeJuly 1, 2014 at 10:03 pm #11987Hey,
So this is a string in the woocommerce plugin and there isn’t an easy place to change this with the theme or really with woocommerce. Here is how to do it:
1. Use a child theme, you can get a empty one here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip
2. Create a folder in the child theme called woocommerce
3. Create a folder in the woocommerce folder called checkout.
4. Copy the file form-shipping.php from the woocommerce plugin. In the templates/checkout folder
5. Edit line 29 to whatever you would like.Ben
In forum: Virtue ThemeIn reply to: Theme install failed
-
AuthorSearch Results


