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: Change column background colour
In forum: Virtue ThemeI love the Virtue theme, but one excellent feature I am able to use in another page builder I’m using with a different theme is changing the background colour of an individual column, and also having the ability to extend column content the full width of a page. For example having two columns stretching the full width of the page, each with a different coloured background and text on top. So just to clarify, I would like everything stuck together horizontally (no padding) and stretching full width, and the ability to have a different background colour or image for each column. Hope this makes sense. Is this possible?
In forum: Virtue ThemeIn reply to: Navigation Issues – Formatting
This is what I am getting on my end.

It seems that after I readjust the size of the window, that the slider fills the page as it should. To recreate this, make your window less then half of what it is. Then click on “Home”. After doing so, this is what happens.
Thanks again Ben!
You are truly amazing!
In forum: Virtue ThemeIn reply to: disable Product Page: Product Video Tab Text
September 3, 2014 at 3:05 pm #16488in the product edit page, scroll down till you see “product video tab”
remove the code from that box.
Ben
In forum: Virtue ThemeHi Ben,
I’ve noticed a custom field that I didn’t create (at least not on purpose anyway) named slide_template with a value of default being listed on my pages in the custom fields list. Should that be there or should it be hidden? Can I delete it? Where’s it come from?
In forum: Virtue ThemeIn reply to: display the main menu on the home page
September 3, 2014 at 2:24 pm #16471Post a link.
The code I sent would only hide the main menu on the home page.
Ben
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
In forum: Virtue ThemeIn reply to: display the main menu on the home page
In forum: Virtue ThemeIn reply to: Home Page Flex Slider – shadow
Hello Hannah!
Thanks. It is really beautiful in IE 11, FF, Opera, Chrome … 🙂
But in IE 8 is 🙁 Flex slider is moving to right. – http://bio-voda.com/wp/ (my test page)
Is possible to disable this option in IE8, but enable it in other browsers?
Thanks.
Best regards
In forum: Virtue ThemeHello!
Is possible to add shadow to Home Page Flex Slider, like has it Revolution slider?
For sticky header shadow I add this in CSS and works fine:
.headerclass {
background: rgba(255,255,255,.9);
-webkit-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.75);
position: relative;
}Is possible to add similar code to Home Page Flex Slider for shadow below?
Thanks.
Best regards
In forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
September 3, 2014 at 11:16 am #16448You can see an example of select boxes, and other input fields in the lib/metaboxes.php file in the virtue theme.
You can have them show on a page by just using “page” instead of staff.
Ben
In forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
Great thanks Ben!
I’ll give that a shot. That may help me add other custom items too once I get the hang of modifying the metaboxes. Using custom fields was pretty easy in the child template files. I didn’t know how/where to filter the metaboxes without breaking things in the back-end to make more integrated fields.
What I was initially thinking was to add a custom field with a rank name in text: like Sensei, Sempai etc. (A pop-up list would be even cooler though). Then in the child theme template I’d use that name to pull up a kanji image as a title background and print the rank name over it using the same text/font as the person’s name.
I should be able to figure out how to do that from what you posted above.
On a related note, what would I change to do the same thing to hook into the page metaboxes, if I wanted to do the same type of modification on normal pages? Would I edit this line to use ‘page’ post type?
‘pages’ => array( ‘staff’, ), // Post typeThanks!
In forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
September 3, 2014 at 10:50 am #16442So I’m guessing you want an image upload meta box. Here is the code that you would add to your child theme functions file:
add_filter( 'cmb_meta_boxes', 'kt_custom_metaboxes' ); function kt_custom_metaboxes( array $meta_boxes ) { // Start with an underscore to hide fields from custom fields list $prefix = '_kt_'; $meta_boxes[] = array( 'id' => 'kanji_rank_meta', 'title' => __( "Kanji Rank", 'virtue' ), 'pages' => array( 'staff', ), // Post type 'context' => 'normal', 'priority' => 'high', 'show_names' => true, // Show field names on the left 'fields' => array( array( 'name' => __( "Kanji Rank Image", 'virtue' ), 'desc' => __( "This will go above the staff Image", 'virtue' ), 'id' => $prefix . 'kanji_rank', 'type' => 'file', ), ) ); return $meta_boxes; }Then in the front end where the staff show you can call that image using this php script, just add right above the call for the staff feature image:
<?php global $post; $kanji_rank = get_post_meta( $post->ID, '_kt_kanji_rank', true ); if(!empty($kanji_rank)) {echo '<img src="'.$kanji_rank.'" alt="kanji rank">'; }?>Ben
In forum: Virtue ThemeIn reply to: display the icon menu on all pages of the site
September 3, 2014 at 10:37 am #16441Yes using page builder, or column shortocdes you can add icon menu items to any page by clicking “virtue shortcodes” and adding an icon box.
Ben
In forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
Here’s a link to the old static HTML site that I’m in the process of rebuilding in WordPress with a child theme. I’m working on the new site offline for now though, so I can’t post the new URL yet. I’ve got the child theme staff page formatted similar to the old static page now with the photo to the left and the bullets to the right. What I want to add now though is the custom rank/kanji text/image above each photo. If the staff post type included custom fields I could do it pretty easily like I’ve done it on my pages to add a kanji image behind the page tile, much like is seen at the top of this old static page as well.
In forum: Virtue ThemeIn reply to: Custom Fields in Staff + Testimonials?
Hi Ben,
Yes, I am using a child theme.
I’m currently using a custom field on the pages to add an image url that I’ve added for kanji that is displayed behind the page titles in my child theme.
I’d like to use a similar method to add a “rank” field to the staff items (karate instructors), so that my child theme could display a rank title above each staff image, which I’ve already modified to display to the left of the staff_info in a single column staff grid format.
In forum: Virtue ThemeIn forum: Virtue ThemeIn forum: Virtue ThemeTopic: Admin Page stopped working
-
AuthorSearch Results


