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 '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 50,381 through 50,400 (of 53,646 total)
  • Author
    Search Results
  • #16504

    I should add that essentially what I’m looking for is the addition of a “wide content” class in the visual style of the pagebuilder.

    #16503

    I 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?

    #16491

    This is what I am getting on my end. Image and video hosting by TinyPic

    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!

    #16488

    in the product edit page, scroll down till you see “product video tab”

    remove the code from that box.

    Ben

    #16478

    Hi 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?

    #16471

    Post a link.

    The code I sent would only hide the main menu on the home page.

    Ben

    #16467

    can anyone please tell me how to disable the Product Video Tab from a Product Page

    #16465

    I was able to then use the same approach to replace the generic custom fields I was previously using on the pages, with a custom file field the same way. Thanks!

    #16463

    ok, but would hide the menu is only on the home page. Here it is close on all page of my website.

    #16462

    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

    #16459

    Hello!

    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

    #16448

    You 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

    #16445

    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 type

    Thanks!

    #16442

    So 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

    #16441

    Yes 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

    #16440

    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.

    http://Traditional-Karate.com/about/instructors.html

    #16435

    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.

    #16429

    Hello,
    Is it possible to display the icon menu on all pages of the site.
    Thank you.

    #16428

    Hello,
    Is it possible not to display the main menu on the home page?

    Thank you.

    #16413

    Today I logged in (no plugins changed) and suddenly the admin page inside is empty ! I did not upgrade wordpress or anything. I tried reload many times but no change. The theme’s admin links also don’t work.

    The wordpress page footer is complete.

Viewing 20 results - 50,381 through 50,400 (of 53,646 total)