zkenstein
Forum Replies Created
-
Forum: Plugins
In reply to: [My YouTube Channel] YTC ERROR: name lookup timed outSolved
Forum: Plugins
In reply to: [WP Job Manager] Display Closing Date ValueForget it, the code already fixed. Just skip it.
Thanks,
ZForum: Plugins
In reply to: [Advanced post slider] Add a "Read More" button to slider posts Template 1You can edit the value the_title to the
<?php the_titlesmall('', '...', true, '33')?>
and put this on your function:// Title Slider function the_titlesmall($before = '', $after = '', $echo = true, $length = false) { $title = get_the_title(); if ( $length && is_numeric($length) ) { $title = substr( $title, 0, $length ); } if ( strlen($title)> 0 ) { $title = apply_filters('the_titlesmall', $before . $title . $after, $before, $after); if ( $echo ) echo $title; else return $title; } }
I hope this is what your need,
Forum: Plugins
In reply to: [Widget Logic] Load the widget based on CPTNo worries, finally I changed the code and is works well.
??
Forum: Plugins
In reply to: [WP Job Manager] Listing for expired JobsHi Mike,
Can’t find the custom field name for expired date, what exactly name of the cf?
Thanks
As per I knew, is also not working with Avada theme as my case.
Forum: Plugins
In reply to: [WP Job Manager] Listing for expired JobsThanks, I will try it
Forum: Plugins
In reply to: [WP Job Manager] Listing for expired JobsThanks, I will try to create custom query is it possible right?
Forum: Plugins
In reply to: [Meta Box] Where in admin sidebar?You need to snip the metabox code on function.php file, this is the example code for the single metabox
add_action( 'admin_init', 'rw_register_meta_box' ); function rw_register_meta_box() { // Check if plugin is activated or included in theme if ( !class_exists( 'RW_Meta_Box' ) ) return; $prefix = 'rw_'; $meta_box = array( 'id' => 'personal', 'title' => 'Personal Information', 'pages' => array( 'post', 'page' ), 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'name' => 'Full name', 'desc' => 'Format: First Last', 'id' => $prefix . 'fname', 'type' => 'text', 'std' => 'Anh Tran', 'class' => 'custom-class', 'clone' => true, ), ) ); new RW_Meta_Box( $meta_box );
or you can find more details on the readme.txt or here:
Hope this helps