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
Hey, on my education page, I want a space before where it says Bachelor of Arts in Communication-University of Kansas
-August 2004 – May 2008—-*Login to see linkI’ve tried adding spaces in visual editor and also tried adding the
But I’m not having any luck?
In forum: Virtue ThemeTopic: Custom Category Page
Hi friends, I need a page to display the products on sale for a specific category, I would like to use the same UI (filters on the left and products thumnails on the right) like the rest of category pages, how can we do that with the tools provided by virtue theme? If we have to make some specific customization (coding) I’ll appreciate a references to accomplish this task.
Thanks in advance for your help,
Regards.In forum: Virtue ThemeMay 5, 2016 at 8:50 am #93785Hi
I have added a sub-menu and want an arrow to indicate the existence of the sub-menu.
I enabled that seeting but when I press save I always get the error message“There was a problem with your action. Please try again or reload the page.”
I am using a child theme, so I disabled the child theme and tried again, still the same issue.
WordPress = v4.5.1 – Virtue Premium = v3.6.4
Any ideas why the change will not stick?
Regards
In forum: Pinnacle ThemeHi,
im trying to change the blogs photos size in the home page.
i want that all the photos will be on the same size.
the left photo (old job/new job) in the link below is the photo size i want but i cant find how to do it.
*Login to see link
please explain how to do it.
Thanks,In forum: Virtue ThemeDear Hannah and Ben,
I would like to style individual image menu items with different background hover colors. Please see the image menu items on my page below under ‘Supported by:’ *Login to see link
I see two ways for doing this.
1) Custom CSS Box
Here I managed to assign a new background hover color (blue as a test) to all image menu items with the following CSS selector:
.image_menu_hover_class {
background-color: blue;
}I don’t know which selector to chose for the individual image menu items and cannot retrieve this information in Google Chrome’s HTML view of the site.
2) Page Builder
One can assign attributes for each widget. I played around with this but couldn’t make it work.Any ideas what’s the best solution for this?
Thanks a lot for your help in advance and best regards
Sebastian
In forum: Virtue ThemeIn reply to: Virtue Theme Questions
5. When I added the code the functions.php file in the child theme folder the code appears above the top bar and in my wp admin page at the top too. I want to replace the functions.php file but I want you to see what I’m talking about.
// Display only low price for variable WooCommerce products add_filter(‘woocommerce_variable_price_html’, ‘custom_variation_price’, 10, 2); function custom_variation_price( $price, $product ) { $price = ‘Starts at: ‘; $price .= woocommerce_price($product->get_price()); return $price; }
5. b) okNext Section:
2. I see and understand your last statement. It’s crazy how buggy things are between firefox and safari through my computer which is a macbook pro retina, I have even look at the site in chrome or IE.
10. When I added both codes I still see the footer for a split second in safari, in firefox there is no issue. I also can’t add the code the css in theme options I get this : There was a problem with your action. Please try again or reload the page. I think it has to do with the code that is supposed to help me with displaying pricing.
11. worked thanks
13. fair enough17. I don’t understand how there is a size chart tab, its not in the product page admin. I have a short code from tablepress that I want to add for that tab but I don’t see it. Where is it?
18. I removed the sitewide notice and would like to add a slider to my shop page like in the demo 3. I noticed there is no full width slider option like there is for the homepage.
thanks
In forum: Virtue ThemeIn reply to: Primary and Drop-Down Tabs Not Highlighted
May 4, 2016 at 3:02 pm #93751Can you post a temp login? For some reason it doesn’t look like you added the menu item as a page? The classes are not showing up that would allow for this.
Ben
In forum: Virtue ThemeWhen on that drop-down page I want to have the parent tab – About – highlighted in yellow so it is clear which parent tab the drop-down page belongs to.
Then, when I just hover the About parent tab while on the My Approach page I’d like to see the My Approach drop-down tab highlighted in yellow on the drop-down list.
The net result:
1. While on a drop-down page I need to see the parent tab highlighted.
2. When hovering over the parent tab I’d like to see the drop-down menu item highlighted.
The point is to make sure people know where they are on the site without having to search for it.
Thanks,
Jerry
In forum: Virtue ThemeIn reply to: Woocommerce images
May 4, 2016 at 2:20 pm #93744Hey,
In your theme options > shop settings scroll down to the “Product Image Sizes”Turn off the “Enable Product Image Aspect Ratio on product Page”.
Then in your woocommerce settings > products > display you need to set the image sizes to be 1140 width and whatever height and there it’s important you leave “hard crop” off.
Next you need to install this plugin and run it: https://wordpress.org/plugins/regenerate-thumbnails/
And finally add this css:
.product-img-case, .product-summary-case{ width: 100%; }Ben
In forum: Virtue ThemeIn reply to: Woocommerce images
In forum: Virtue ThemeIn reply to: Menu Icons on all pages except woocommerce products
In forum: Virtue ThemeTopic: Woocommerce images
Hi everyone,
I have asked on the woocommerce forum but they have suggested I ask you guys here. The images the client has given me are too large and I want to have each product image on each page to be fullwidth. Please see the responses from the woocommerce forum about what they suggested.
This is the site that I’m talking about.
So sorry to be a pain yet again
Thanks,
Richard
In forum: Virtue ThemeIn reply to: Galley items duplicates
May 4, 2016 at 11:11 am #93723No because there is no function that is woocommerce_after_out_of_stock_button. If you look at woocommerce/single-product/add-to-cart/simple.php the first check it
<?php if ( $product->is_in_stock() ) : ?>None of the code below that runs if there is nothing is stock.
You only option there would be to do the same check against woocommerce_single_product_summary you would have to call in the product global variable then check for stock and add your buttons if there is no stock. So something like this:
add_action('woocommerce_single_product_summary','samt_additional_button_outofstock', 35); function samt_additional_button_outofstock() { global $product; if ( !$product->is_in_stock() ) : echo '<a href="http://buyblitzkrieg.ru/store"><button type="button" class="kad_add_to_cart single_add_to_cart_button headerfont kad-btn kad-btn-primary button alt">STORE</button></a>'; echo '<a href="http://buyblitzkrieg.ru"><button type="button" class="kad_add_to_cart single_add_to_cart_button headerfont kad-btn kad-btn-primary button alt">HOMEPAGE</button></a>'; endif; }In forum: Virtue ThemeIn reply to: RSS Feeds
May 4, 2016 at 11:01 am #93720Hey,
So a page is only going to have a comment feed. Not going to show portfolio posts.Since portfolio isn’t like a blog nor is it supposed to be.
If you need a feed then you need to make a portfolio type that includes all your portfolio posts. Then you would link to that types feed. for example this is the design feed on the demo site:
http://themes.kadencethemes.com/virtue-premium/portfolio-type/design/feed/
Ben
In forum: Virtue ThemeIn reply to: Virtue Theme Questions
May 4, 2016 at 10:54 am #937175. What error?
5.b Everything in the theme options is saved in your database (not in any parent or child theme files). You only need a child theme if you plan to edit template files or add functions.
If you prefer to write your css in the child theme that is totally up to you but you don’t need css in both places.
You should be sure to understand css hierarchy if you plan to switch the css to a child theme as the hierarchy changes. Custom css box comes last.
NEXT SECTION
2. When you are more ready and turn off coming soon I can use a proxy server and run a tons of tests against your site from different browser and operating systems maybe then I’ll figure out why you are seeing this. It’s key that you’re not seeing it on the demo though.10. This will make the page white while it loads:
body { opacity:0; } html.no-js body { opacity:1; }and this will make the product container have a min height so this doesn’t appear:
.kad_product_wrapper { min-height:700px; }11. The notice is not part of the header, it’s fixed on top the top bar is there fixed it’s just sitting under it because of z-index properties. The notice can’t be included in the header because it’s not part of the header. It’s actually added in the html in the footer of the page just placed on top with fixed positioning.
So hopefully that explains more. And it’s why there isn’t a built in option to make the notice also be part of the sticky header. You can make it so the notice it left behind as you scroll with this css:
p.demo_store { position: absolute; }13. The edit would only show to users who have editing permissions.. You need to look at the site logged out for that to not be there. (of course that would have to wait till you remove coming soon).
Ben
In forum: Virtue ThemeIn reply to: Galley items duplicates
In forum: Virtue ThemeIn reply to: Virtue Theme Questions
In forum: Virtue ThemeIn reply to: Virtue Theme Questions
1. I guess tablepress could work thanks
5. I tried to add the code you suggested to the child theme function.php file, which had nothing in it and some error appeared so I removed the code.
Question – all of the changes to css in theme options, should they be in my child theme files too? I thought that everything I changed css wise was updated in my child theme files due to the fact that I have the virtue child theme activated as my theme.NEXT SECTION
2. This is crazy I deal with it everyday. I’m glad you don’t see it. I’m just want to know that it won’t occur for others. Sorry you are trying it tons of times with no result.
10. The issue seems to be with safari not firefox. Its so frustrating when the browsers act so differently with sites. Not sure what to do maybe a black white page could work.
11. So if the sitewide notice is present then the topbar dissappears when you scroll down. If the sitewide notice is not present then the top bar locks and stays static along with the header-logo-top nav and secondary menu. Is there any way to keep the topbar static and also have the sitewide notice present?
Maybe you are referring to the woocommerce sitewide notice. That overlaps your header because it’s fixed above it. Would you like that to not be sticky?
13. Sorry to be clear, I was trying to figure out a simple way to may some tables and charts with you theme or woocommerce without using a plugin. I’m trying to use table press but running into some issues. I can’t figure out how to remove the edit link that appears on the left side and I still don’t get how to order them with in the tabs. For that matter I still don’t get how to change the order of the Product Description tab and when I try to reorder other tabs they never go where I want them to. – Thank you for doing what you did to show me, now I just have to see what you did so I can duplicate it. Much appreciated Ben!
14. I will check that out thanks
15. thanks that worked.
16. okayIn forum: Virtue ThemeIn reply to: RSS Feeds
Here is the link to your page’s RSS feed.
In forum: Virtue ThemeIn reply to: Edit / style single staff member pages
Hi Hannah! Thanks for getting back!
I do have the staff tab. At least I think that’s what you mean. I can add and edit single staff members there. No problem! The staff grid also works out fine.
Let me refine my question: When you click on a staff member in the staff grid, you get to the single staff member’s page. My problem is that the staff member page shows the featured image in a certain size etc. (medium sized thumbnail on the top left). Is there a central template where I can edit what all the specific staff member’s pages look like?
If not, I have already started with a workaround (disable the staff-img in css and add my own image with a custom class). But I wanted to know if there’s a built-in, more elegant solution.
-
AuthorSearch Results


