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
In reply to: how to display portfolis on different pages
So what you’re trying to do is split up the topbar widget area and that doesn’t really work. One thing that might work is adding the phone number to your topbar menu. In appearance > menus create a topbar menu (if one is not already created) and add a custom link menu item. Leave the URL blank and put the phone number in the link text box. You may have to put something in the URL space to get it to add, but once it’s part of the menu you can just remove it. Does that make sense? Be sure to set the menu to Topbar Navigation under Menu Settings.
Then you can add this to your custom css box in theme options > advanced settings to adjust the size of the number:.topbarmenu ul li a { size: 20px; }As for the portfolio, I’m assuming you mean the portfolio grid page? For what you’re wanting your best option is to use a shortcode and page builder. So you would create a page and in the pagebuilder tab you would create a row with an image, and then another row with two columns, one with the portfolio shortcode and another with the values. You can use this shortcode: [portfolio_posts items=”10″ columns=”4″] just paste it into a text widget.
Hope all that makes sense!Hannah
In forum: Virtue ThemeIn reply to: Move Footer To Bottom Of Page
Thanks Ben,
Not sure what happened but now the header isn’t sticky on the other pages, and I can’t see the footer either: http://sharonpole.com/product/glory-covers/
Any ideas?
In forum: Pinnacle ThemeIn reply to: kadence slider cant be shown on mobile slider
In forum: Virtue ThemeTopic: Lightbox issue
Hi
We`re having a problem with the lightbox on our site:
*Login to see linkHOME-PAGE
problem/issue/bug
***Clicking on the lightbox link on a featured artwork in the featured artworks section opens the lightbox and squeezes the image vertically and only shows the correct image behind it. ***This is also happening throughout the site, wherever we try to place a gallery.We have also deleted jetpack. And it still behaves like this.
Would appreciate some advise on this.
Thanks
In forum: Virtue ThemeHi,
I´ve got a some problems on the following page: *Login to see link and don´t know how to solve it…1. I´m using the revolutionary slider – in my wp admin panel no problem – if i´m using it on mobile devices and in some other browser it won´t work (pictures will not be shown)!
2. I use the Google Maps Virtue Shortcode in my footer as an sidebar – sometimes it´s shown sometimes not.
That´s the sourcecode: [gmap address=”Bahnhofstraße, Garmisch-Partenkirchen, Deutschland” title=”Kathan Ergonomie” height=”200″ zoom=”17″ maptype=”ROADMAP”]I´m guessing that there is an simular error, maybe in java-script?
3. For retina images i´m using the WP Retina 2x plugin. The pictures are never retina 🙁 and the “large sizes” shown always: pleace upload bigger sizes…
Thank you for your help.
DavidIn forum: Virtue ThemeIn reply to: wired testing
In forum: Virtue ThemeTopic: Registering not working
Hello,
I got an issue with the registering on my eCommerce page. Every time I click on “My account” it gives me the option to register using email and password. I fill in both but then it just refreshes the same page and nothing happens. I’ve tried to search and quickly learned that a lot of people are having the same issue as me, but they’re using a different theme. It might be something with the cache remembering, but I’m not quite sure how to change such thing.
I’m using the newest version of WooCommerce 2.2.10 and Virtue Theme 2.7.8 and I’ve disabled all pluging trying to disable the page for new users.
Besides that I also made sure that WordPress allows new users to register and the same thing with WooCommerce.*Login to see link
*Login to see link/Andreas
In forum: Pinnacle Themekadence slider cant be shown on mobile slider
i mean the homepage that one..
it appears to be blank in the mobilemy web: *Login to see link
In forum: Virtue ThemeJanuary 12, 2015 at 9:16 pm #27452Hello.
I am using page buider for my layout. I want to make a filler space (kind of padding) separating the widgets in my page (5 or 10px), so I see each widget separated to the other . Is this done with the Gutter option in “edit row”->Layout?, is not working for me. Could you tell me the way to do this?
The page is *Login to see link
Thanks
In forum: Virtue ThemeTopic: Flex Slider
Hi Guys,
I have been playing with a flex slider for my front page – but not sure what is going on – the pics are big enough, but the slider never advances. I am sure it is some trivial setting I missed. Can someone give me some idea what to look for?
You can see the start of my project at *Login to see link
Thanks!
In forum: Virtue ThemeIn reply to: Menu + smooth scrolling
January 12, 2015 at 6:15 pm #27446Your missing a dot… see: look closely.
.navclass { display: none; } .page-id-57 .navclass { display: block; }Ben
In forum: Virtue ThemeIn reply to: Menu + smooth scrolling
Now I have:
/* My Custom Styles */
:lang(el) { font-family: Gentium; font-size: 15px; }
:lang(he) { direction: rtl; font-family: “SBL Hebrew”; font-size: 19px; }
navclass {
display: none;
}
.page-id-57 .navclass {
display: block;
}Nonetheless the secondary menu is still on all pages.
In forum: Virtue ThemeIn reply to: Menu + smooth scrolling
January 12, 2015 at 5:54 pm #27442Hey,
1. I don’t know this plugin: https://wordpress.org/plugins/page-specific-menu-items/so I can’t really tell you what the issue is. If I had to guess it is conflicting with the super dropdown options in virtue. You can turn those theme options off with a function in your child theme:
global $kt_custom_menu; remove_filter( 'wp_setup_nav_menu_item', array( $kt_custom_menu, 'kt_add_nav_fields' ) ); remove_action( 'wp_update_nav_menu_item', array( $kt_custom_menu, 'kt_update_nav_fields'), 10, 3 ); remove_filter( 'wp_edit_nav_menu_walker', array( $kt_custom_menu, 'kt_edit_admin_walker'), 10, 2 );2. Your css..
for a post the class should be:
.postid-374and none of this is in your custom css box in the theme options?? you have:
/* My Custom Styles */ :lang(el) { font-family: Gentium; font-size: 15px; } :lang(he) { direction: rtl; font-family: "SBL Hebrew"; font-size: 19px; }In forum: Virtue ThemeIn reply to: Menu + smooth scrolling
Hi. I am still working on menu in porfolio so I decided to ask your help again. I have found a plugin https://wordpress.org/plugins/page-specific-menu-items/
it allows to create one menu and to hide specific items on different pages, including portfolio but it dooes not work with your theme (maybe it depends on secondary menu?)When I set the secondary menu it displayes on all pages even if I set only specific items for specific pages. I need this menu only on 3 pages. I tried to add your css
.navclass {
display: none;
}
.page-id-57 .navclass {
display: block;
}
.post-id-374 .navclass {
display: block;
}
.page-id-post-804 .navclass {
display: block;
}But it still does not work. I do not now if I must use post-id or page-id for portfolio pages. The menu is displayed only on page ‘o-nas’ (id-57). Even there I cannot hide specific items.
Where is the error? What can we do?
In forum: Virtue ThemeIn reply to: install a like button facebook on my homepage
In forum: Virtue ThemeIn reply to: install a like button facebook on my homepage
In forum: Virtue ThemeIn reply to: 3D style buttons
In forum: Virtue ThemeIn reply to: Add a URL to featured image.
Sure, when you are inside the post the featured image is (usually) located at the top of the post. When you click on that image it pulls up a copy of the image from the hosting service. I have patrons clicking on these images thinking that they will be re-directed to a different page (or content provider) based on the subject matter of the post. Now these links are always readily found inside the post content, but I still get complaints on this one feature. They want to click on this image and be re-directed to the post’s informational content, even though the link is listed specifically below. I know it’s a little thing but we’re really into making our site, uh, user friendly – yeah that’s it.
Does that make sense?
Rob
In forum: Virtue ThemeIn reply to: install a like button facebook on my homepage
In forum: Virtue ThemeIn reply to: Menu + smooth scrolling
January 12, 2015 at 2:43 pm #27419There isn’t an option to set a specific menu for a specific portfolio page. The per page plugin works but as you said only per page.
You would have to create a child theme and come up with some tricky code to use that would allow you to change the menu on a per portfolio post.
Else you can look for a plugin like the per page only a per post option. But I haven’t seen one.
Ben
-
AuthorSearch Results


