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: Icon Menu – sizing and background question
November 4, 2014 at 9:15 am #216911. If you use pagebuilder you have to use pagebuilder can’t switch out of it. But with the visual editor widget I don’t understand why you would need to?
2. Are you meaning to use the content wide style? That will stretch out your icons a lot since it removes the page widget. I think you want to switch to wide gray. You can change the color but that will keep the icons much closer together.
Ben
In forum: Virtue ThemeIn reply to: Home page slider
Thanks again,
I managed to get it done, but there were some problems with me trying to get the shop page to look like the previous homepage that had a secondary tab and image menu and a content page. I Do like the way it is currently with a full rev slide page above with the arrow that navigates to the main portion of the homepage. Is there a way to keep the slider page from showing up after you navigate to the main content? So in other words after you hit the bottom arrow on the slider page and it takes you to the tab menu and page content you will no longer be able to scroll up the the slider page.In forum: Virtue ThemeTopic: Flex slider remove arrows
Is it possible to remove the navigation arrows from my homepage slider (flex slider) – I just want the one image so there is no need to arrows.
Also is there a way to make the primary menu stretch full width (I don’t need the logo there at all because I have added it into the image).
ThanksIn forum: Virtue ThemeIn reply to: Icon Menu – sizing and background question
November 4, 2014 at 6:05 am #21679Right okay – I have been playing around with it and this is what I have done:
Added a static page as the homepage instead of latest posts
in the page (using pagebuilder) I set up info boxes making 7 columns and putting a button image into 5 of these (so I can have the desired space either side) I made the background grey and then used the CSS you updated for me to make the buttons seems like they are coming towards the screen. However the CSS didn’t work so I just altered it a tiny bit to:
.kad-info-box {
-ms-transform: scale(1,1); /* IE 9 */
-webkit-transform: scale(1,1); /* Chrome, Safari, Opera */
transform: scale(1,1);
-webkit-transition: -webkit-transform .2s ease-in; /* Changed here */
-moz-transition: -moz-transform .2s ease-in;
-o-transition: -o-transform .2s ease-in;
transition: transform .2s ease-in;
}
.kad-info-box:hover {
-ms-transform: scale(1.1,1.1); /* IE 9 */
-webkit-transform: scale(1.1,1.1); /* Chrome, Safari, Opera */
transform: scale(1.1,1.1);
}Cleared the cache (as you suggested) and boom it works!! woohoo!!!
The reason I wasn’t able to see the pagebuilder items in either ‘visual’ or ‘editor’ was because the page was only a draft – once I published it I could see it in all three modes.
Okay just a couple more questions (so sorry):
This is my test site:
http://www.auntydotsweets.co.uk/
where it says ‘plant hire’ ‘plant hire’ etc in the buttons – how can I alter this so that the space between each button (which is built through pagebuilder using the info box widget) and top and bottom isn’t so large? I really don’t want the buttons much bigger but closer together…Many thanks
Nic
In forum: Virtue ThemeTopic: about page
Hi,
How can I get rid of the title “about” in about page without loosing the “about” menu in Header ? *Login to see link
In forum: Virtue ThemeIn reply to: Icon Menu – sizing and background question
November 4, 2014 at 3:14 am #21671Hi Ben,
Thank you – yes I installed all the recommended plugins when I first installed the premium theme. They are all installed and active. But still when I am editing a page I can either see the text etc in the visual/text editor OR the widgets in the pagebuilder – so how can I position one above the other? Or is it a case of you cannot use the text/visual editor and it must all be built through pagebuilder.
I can’t post a link to the page as it is in maintenance mode so you’d need a username and password to view the site that I am editing.
So, since it looks like using the icon box method would mean I have to build it from scratch over and over for all 150-odd pages I don’t think this is the way to go – unless there is a way to copy it after I have built it into each page? I am going to try and use an image menu in the footer widget as a way to get around it…hopefully I will be able to figure it out myself. I am just not getting the answers to the questions I am asking at the moment.
In forum: Virtue ThemeTopic: contact page
In forum: Virtue ThemeIn reply to: Header problem
November 3, 2014 at 10:56 pm #21660Check your plugins because it seems like something is editing the excerpt : http://www.realinshanghai.com/shanghai-disneyland
Even on the category page.
BenIn forum: Virtue ThemeIn reply to: Header problem
November 3, 2014 at 9:59 pm #21657in the blog settings, of the theme options you have to set your the word count there at-least as high as your home page word count.
Ben
In forum: Virtue ThemeIn reply to: Show Event category posts in main blog loop
November 3, 2014 at 8:46 pm #21652“I find the navigation bar has disappeared from the page on category pages”
Can you post a link?
Ben
In forum: Virtue ThemeIn reply to: Header problem
November 3, 2014 at 8:44 pm #21651max-width 125% doesn’t work like you think. Your image is plenty large it’s just in a container that is 33% of the width of your page. You can add this css and change the size of your logo area which will make the menu area smaller:
@media (min-width: 992px) { .kad-header-left { width: 40%; } .kad-header-right { width: 60%; } }Does that make sense?
Ben
In forum: Virtue ThemeHi Ben
I’m using the blog grid and want to show custom posts in there (tribe_events)
I am using the following code, but when I add this to functions, although it does now indeed display my events in the blog section, I find the navigation bar has disappeared from the page on category pages. Can you suggest a better alternative?
add_filter('pre_get_posts', 'query_post_type');
function query_post_type($query) {
if(is_archive() || is_tag() || is_home() && empty( $query->query_vars['suppress_filters'] ) ) {
$post_type = get_query_var('post_type');
if($post_type)
$post_type = $post_type;
else
$post_type = array('post','tribe_events','attachment');
$query->set('post_type',$post_type);
return $query;
}
}In forum: Virtue ThemeIn reply to: Category Filter Query
November 3, 2014 at 4:40 pm #21632You can also use a custom functions plugin if you don’t want to use a child theme… https://wordpress.org/plugins/custom-functions/
You can also not use the shop page set up your own page and use the woocommerce shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/
Ben
In forum: Virtue ThemeIn reply to: Category Filter Query
November 3, 2014 at 3:55 pm #21626Hey,
The shop page doesn’t work that way, and jetpack is not referring to your shop loop but your blog loop.You would have to change how the woocommerce loop works, they have this outlined in there docs, You will need a child theme: http://docs.woothemes.com/document/exclude-a-category-from-the-shop-page/
Ben
In forum: Virtue ThemeIn reply to: logo link to external url
November 3, 2014 at 3:53 pm #21625Did you change through ftp or through the wordpress editor… what is the reason for changing the code? Why do you want a different url from your home page?
Ben
In forum: Virtue ThemeIn reply to: Category Filter Query
Perfect! Thanks you.
I thought I did given that the top bar was showing the expected colour. Strange. Anyway it is set now, thanks for the heads up.
Ok, so next up…
We’ve set up all product categories on the same level – no sub cats… now we want to only include certain categories on the shop page, any way to filter them from within the theme? At this point we are looking for “include” as opposed to “exclude”.We have Jetpack installed and that has an exclude function but I need to find my category IDs (if the first option can’t be done, how can I find/generate a list of all my shop’s product cat IDs? (Fyi, we only want to include the Cats in the “Go Shopping” Menu you assisted with earlier).
Kav
In forum: Virtue ThemeIn reply to: Home page slider
November 3, 2014 at 12:24 pm #21599Hey,
no, sorry.Whatever page you want your site url to land on that has to be your home page. So in the settings > reading. Make whatever page you want the slider on as your front page.
Then add the fullscreen slider in the theme options > home page.. make sure to select the option to have your slider appear above the header.
Then add this css:
.home .banner, .home #containerfooter, .home .page-header, .home .contentclass { display:none; }Ben
In forum: Virtue ThemeHello,
I use a sticky header for my website. It looks great on all pages, except for the homepage.
Is it possible to disable the sticky header for the homepage?Greetings,
Frank
In forum: Virtue ThemeIn reply to: Home page slider
Thanks Ben, Still new at using WP so please bare with me.
The steps to follow include.•I create a new page in Pages
•Tittle it “welcome”
•Set it to full width
•Select No Parent
•Add a Cyclone Slider with the image I’m using for the page
•Save page•Than go to Theme Options > Advance settings > and paste this css
.welcome:
.no-header-test header.banner, .no-header-test #containerfooter, .no-header-test .page-header, .no-header-test .contentclass {
display:none;
}Than go to my current home page, which is titled “home” on the pages menu and rename it to be a “Shop” page. So the link will reflect client-modern-mobler/robertgarcia.co/shop
Please advise
In forum: Virtue ThemeIn reply to: Home page slider
November 3, 2014 at 10:01 am #21579You would have to use css to hide the header and content and footer.
The name of the page becomes a class that you then use to target one page, if it’s the home page you can use .home :
.no-header-test header.banner, .no-header-test #containerfooter, .no-header-test .page-header, .no-header-test .contentclass {
display:none;
}Here is the result. http://themes.kadencethemes.com/virtue-premium-3/no-header-test/
Ben
-
AuthorSearch Results


