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 'site'
-
AuthorSearch Results
-
In forum: Virtue Theme
Please visit my website *Login to see link and help me how can I set all the other product images under the avatar product picture are in one row and it will be a slide like? Thanks
In forum: Virtue ThemeIn reply to: Revolution Slider Settings Not Working
September 25, 2015 at 11:50 am #60171This plugin is your issue: custom-css-whole-site-and-per-post
It’s breaking the admin. Deactivate it and everything will work.
BenIn forum: Virtue ThemeIn reply to: Pinterest on hover
Hi Ben
Yep, wondered of this was going to be a problem.
Well, I’ve tried both options (on different sites).
The CSS padding did select, but it didn’t do as expected. I tried a 100px pad and all it did was put a 100px band of dark grey between the actual lightboxed image and the black ‘close it’ bar. The ‘pin it’ icon is still in the ‘close it’ bar and so still disappears on hover.
On the other sister site (needlemakersgallery.co.uk), which isn’t live as yet, then I’ve installed the jQuery one and absolutely nothing appears at any stage.
Any idea on either?
Colin
In forum: Virtue ThemeSeptember 25, 2015 at 11:39 am #60167You guys rock! Two questions:
1. Can you tell me how to remove the Home Blog Title all together, including the white space that remains when I add a ” ” space to clear the default “Featured Projects”
2. Is there a way to add custom images for the social media buttons on my home page, align, and resize them?my site: *Login to see link
Thank you!
In forum: Virtue ThemeIn reply to: change social media icon colors
This reply has been marked as private.September 25, 2015 at 11:25 am #60159In forum: Virtue ThemeIn reply to: change social media icon colors
September 25, 2015 at 11:22 am #60156Hannah & Ben:
Thanks for the assist. I will add the changes and see what results I get and will post back so others might benefit.
I customized the widget to add the search icon to the social media and I expect I was making my usual coding errors when you tried to access the site Hannah.
As I use this theme, pulling the layers apart is sometimes tedious. Would you be able to offer a high level description of how the Social media icons work. How set to gray, rollover effects? I have been looking at this for a couple of hours and just don’t get it. Could be the pressure of getting it done is keeping me from thinking correctly, so some high level pointers would be very helpful.
Thanks! great support.
In forum: Virtue ThemeHi, I’m having an issue with the secondary navigation menu on my site. I’m using Virtue Premium. It looks fine when large (laptop and up) but when you reduce the browser window the formatting gets funky. I think it has to do with the sticky header and the transition from the standard bar menu to the mobile drop down menu. I have sticky header enabled. My primary navigation is located in the top bar and my secondary is in a bar beneath my logo above the slider. My url is *Login to see link .
I want to keep the sticky header since it makes navigating the site so much nicer. I would appreciate any advice to remedy this.
Thanks!
In forum: Virtue ThemeTopic: Minimum Page Length
Hello,
Is there a way to set a minimum page length (height) for all pages? For example, I want the content section of each page to be at least 500px.
Website: *Login to see link
Username: demo
Password: demoThanks!!
In forum: Virtue ThemeTopic: Extra Space on Mobile
Hello,
Can you please help me remove the additional space on the right side of my website when using mobile? I do not want users to be able to see the extra space.
Website: *Login to see link
Username: demo
Password: demoThe problem exists on Samsung Galaxy S4 for sure, not sure about other devices.
Thank you!!
In forum: Virtue ThemeIn reply to: change social media icon colors
Looks like your site is in maintenance mode? I could give you css, but it’s going to be different for each social media icon. So for facebook you would use css like this:
#containerfooter .kadence_social_widget a.facebook_link { background: #3b5998; } #containerfooter .kadence_social_widget a.facebook_link:hover { opacity: 1; }Paste that in your custom css box in Theme Options > Advanced Settings. Is that what you were thinking?
Hannah
In forum: Virtue ThemeI just downloaded the Virtue Premium to my main domain but wanted to use it only on a sub-domain. I have not been able to move the theme over. I deleted it from the first site but it will not load on the second site. What can I do? I have not been able to use it and now it is gone.
In forum: Virtue ThemeIn reply to: PERMALINK SETTINGS
September 25, 2015 at 10:16 am #60133Hey Chris.
Permalinks set to “post title” is normal and it’s not a theme issue if yours doesn’t work, when we asked you to switch it’s about finding where the error is. It would be something with your sites set up on the server or a permissions issue with your htaccess file that would make it so you have 404 errors with a permalink settings like post title.
AS for plugins. The ones your using are fine you don’t need all of them.. I personally think WordFence, BulletProof are a little heavy on resources and slow down your site.
My recommendation is to leave Brute Protect, remove the others and install this plugin: https://wordpress.org/plugins/sucuri-scanner/ Focus on the “hardening” tab of that last one.
Ben
In forum: Virtue ThemeIn reply to: Adding Multiple Custom Fields…
September 25, 2015 at 9:36 am #60127I don’t have the power to see your entire child theme.
I can tell you that in the functions file you have:
add_action( 'woocommerce_single_product_summary', 'kt_add_custom_field', 36 ); function kt_add_custom_field() { global $post; echo '<div class="prod-code pc-designer">Designer: '.get_post_meta( $post->ID, 'Designer', true ).'</div>'; echo '<div class="prod-code pc-leadtime">Lead Time: '.get_post_meta( $post->ID, 'Lead Time', true ).'</div>'; }Which is clearly missing Brand. I assume you have some other file in your child theme that is adding brand. Unless you want me to delete your child theme you need to fix this. Just simply use the function I’ve posted here for your benefit.
add_action( 'woocommerce_single_product_summary', 'kt_add_custom_field', 36 ); function kt_add_custom_field() { global $post; echo '<div class="prod-code, pc-brand">Brand: '.get_post_meta( $post->ID, 'Brand', true ).'</div>'; echo '<div class="prod-code pc-designer">Designer: '.get_post_meta( $post->ID, 'Designer', true ).'</div>'; echo '<div class="prod-code pc-leadtime">Lead Time: '.get_post_meta( $post->ID, 'Lead Time', true ).'</div>'; }Can you please tell me how you go about “clearing your cache” on your site and browser. Step by step that would help us a lot to make sure you can clear your cache and we don’t have to keep going back and forth.
Ben
In forum: Virtue ThemeIn reply to: Mobile Layout Support
September 25, 2015 at 9:19 am #60122Hey,
1. 4 products in a row on a cell phone? You can do this with css but I really don’t recommend it. You would have words trying to exit the product columns.
The whole point of a responsive theme is to remove the need to zoom in and out on a mobile device while looking at a website. Everything moves to scrolling for easier viewing and better support. (not to mention google ranking). If you post a link to your site I can show you the css but I caution you that it’s not the point of the theme.2. You can add a grid of featured or bestselling using the woocommerce shortcode. Doesn’t have to be in a carousel just note you can’t switch between the two on mobile or desktop: http://docs.woothemes.com/document/woocommerce-shortcodes/
3. I really don’t recommend “Any Mobile Theme Switcher”, I’ve had little experience with it but it’s never been good. I also don’t recommend a layout that is too large for mobile so my recommendations aside you can do this how you want but just consider that if you have to zoom on a mobile browser at all, google ranks you lower and through studies you are less likely to receive return traffic on mobile devices.
So based on what your saying and your dislike for responsive layout I think your best option is a mobile domain and site where you can set up the content how you want separate from desktop.
Ben
In forum: Virtue ThemeIn reply to: Update went wrong – now what?
In forum: Virtue ThemeIn reply to: Update went wrong – now what?
Hi, after done de Update Virtue Theme Premium and WooCommerce Plugin, my website down!
When i change theme, my website back to life !WooCommerce plugin message alert me about problems. See the message:
“Its theme ( Virtue – Premium ) Contains Copies of outdated Some template files do WooCommerce . These files require MAY YOUR Update To ensure compatibility with the current version to WooCommerce . Fast you can check which files are Were Affected in the System Status page . In case of doubt , check with the theme author”
Pleaseeee! Help us! We need to sell!!!
Thank you!
In forum: Virtue ThemeIn reply to: Update went wrong – now what?
Hi Esben,
just a user here, but if you have some backup i think it can be repaired.
The support team is on a different timezone so it might take a few more hours till you get some real tech to help you.
The content on wordpress is not dependent on the theme so normally you should get it back.Please provide a link to the site – it’s needed for support.
Hope you’ll be ok,
B.In forum: Virtue ThemeIn reply to: Name instead of http://
I’m terribly sorry for the late response.
I guess I wasn’t clear enough of what I want: On the portfolio page you can make a list where it says: Project Type, Skills needed, Tools, Year and website.
So where it says Website: http:// websitename I would like to display : www. websitename without the http://
I guess it’s something in the code, but I cannot not find it.
In forum: Virtue ThemeIn reply to: Update went wrong – now what?
In forum: Virtue ThemeIn reply to: Can I customise bullets?
Thank you SO much, Ben.
I ended up with this and it looks great:
.entry-content ul li { list-style-type: none; }
.entry-content ul li:before { content: “e1df”; font-family: virtue_icons; font-size: 12px; color: #2E446D; margin-right: 15px; }It’s at https://www.rightwebsite.co.uk/event/wordpress-workshop-next-steps/
The only thing I would love to add to it is to make sure the bullet points don’t wrap out to the left-hand margin. Can you tell me how to keep the bullet point text aligned to the left-hand side of the first line?
And what do these lines do?:
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;Thanks!
Valerie
-
AuthorSearch Results


