Antho33
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Missing photos in albumOk, i found the status option which move to “stand by” but without any action.
Anyway, with a “publish status”, photos appear.Thx a lot
Forum: Themes and Templates
In reply to: [GeneratePress] New div next to featured imageOk, i found how to resolve my issue.
The filter doesn’t work because it’s overloading by a function plugin call in
/wp-content/plugins/gp-premium/blog/functions/images.phpSo, it’s ok for me, my background is blur 🙂
++Nop, I already try this option but it doesn’t work.
Forum: Plugins
In reply to: [WP Photo Album Plus] JS Conflict ?Hum…. The problems disappeared…
Strange behaviour ! I searched for hours yesterday but i was stuck on it, so i wrote this message.
Maybe an issue with js&css minify…thx for your time & your help & your work on this plugin !
Regards(if you want to see the website, french soccer team : http://www.fcgueugnon.fr/wp/
WPPA : “Medias / Photos”
Smart Slideshow Widget : widget “Nos Partenaires Premiums” on the top-right
Advanced post slider : block “A la une” on the left)Forum: Plugins
In reply to: [WP Photo Album Plus] JS Conflict ?Yes, WP Featured Content Slider is the real name of the second plugin.
For the first plugin (Advanced post slider : http://www.wpcue.com/wordpress-plugins/advanced-post-slider), it was delete from wordpress ! I just discovered that….
Maybe you would see the issue online ? I’m currently doing a backup of my website.
thx a lot for your help
RegardsForum: Plugins
In reply to: [WP Photo Album Plus] Conflict WPPA & WP Lightbox 2Perfect it’s work !
FYI, when i choose “Lightbox” on the dropdownlist, the IX-J3 is not displaying.
Thx
Forum: Plugins
In reply to: [Yoast Duplicate Post] When Cloning Posts Twitter url Does Not UpdateUpdate : I encounter this bug again :/
My “do not copy fields” is : _wp_jd_supr,_wp_jd_ind,_wp_jd_bitly,_wp_jd_wp,_wp_jd_yourls,_wp_jd_url,_wp_jd_goo,_wp_jd_target,_jd_wp_twitter,_jd_twitter,_wpt_failed, _wpt_short_url
Regards
Forum: Plugins
In reply to: [Yoast Duplicate Post] When Cloning Posts Twitter url Does Not UpdateYes ! It’s work for me.
Thx
Forum: Plugins
In reply to: [Yoast Duplicate Post] When Cloning Posts Twitter url Does Not UpdateSame issue…..
Forum: Plugins
In reply to: [Advanced post slider] Sticky PostPersonally, i patched the following file : advanced-post-slider.php to only displaying sticky_post.
This trick have to be redone after plugin updateThe patch :
In the $query_args (~line 277), i add the sticky post option
$query_arg = array(
‘post_type’ => ($query[‘advps_post_types’]) ? $query[‘advps_post_types’] : ‘post’,
‘post__not_in’ => $exclude,
‘offset’ => ($query[‘advps_offset’]) ? $query[‘advps_offset’] : 0,
‘posts_per_page’ => ($query[‘advps_maxpost’]) ? $query[‘advps_maxpost’] : 10,
‘orderby’ => ($query[‘advps_order_by’]) ? $query[‘advps_order_by’] : ‘date’,
‘order’ => ($query[‘advps_order’]) ? $query[‘advps_order’] : ‘DESC’,
‘post__in’ => get_option( ‘sticky_posts’ ) // my Update
);