Xam1311
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Slider Feed] Not showing 16 images?The plugin use the link to instagram who is now limit to display only 12 images at the time, beside you have selected more than twelve.
$response = wp_remote_get( 'http://instagram.com/' . trim( $search_string ), array( 'sslverify' => false, 'timeout' => 60 ) );
The plugin maybe can be modify for be compat with the url which can display 20 most popular images
Json page
Example json page
I will try to modify the plugin code if i have the time
I have seen that api instagram had changed and maybe we have to have an oauth access for access
Cheers !Forum: Plugins
In reply to: [Social Slider Feed] Not showing 16 images?Hi,
Here an answer about the 12 imageshttps://wordpress.org/support/topic/widget-only-shows-12-images?replies=4
I will look at the plugin and try to explain why.
++Forum: Plugins
In reply to: [Gravatar Widget] Code to update the widget constructor to PHP 5Hi,
I’ve just made a repo about this little widget with the correction for use in php 5.3 +
https://github.com/xam1311/gravatar-widget
++hope that ‘bug’ will help other people ^^
yep, we have to uncomment the line on php.ini
extension=php_openssl.dllin wampserver
Cause your server is in Https 😛
thksi’ve already tested in Localhost fo the moment .
WOrks like a charm in manual mode, my comment was made to improve your product and make it better 😛
Forum: Plugins
In reply to: [WP Product Review Lite] Page Admin doesn't show – solution herethe bug is inside the plugin, just one mistake ^^
Forum: Plugins
In reply to: [WP Product Review Lite] Doesn't fit with themeI don’t see any problem on my chrome?
Forum: Plugins
In reply to: [WP Product Review Lite] Few bugsChange wp-product-review/inc/cwp_frontpage.php
Line 157 change is_single for is_singular and for pages it will works
if(@$cwp_review_stored_meta['cwp_meta_box_check'][0] == 'Yes' && is_singular())
i made a few modification for enable/desactivate the able for users to post their reviewChange wp-product-review.php Folder racine
include "admin/functions.php"; include "inc/cwp_comment.php";Cahnge admin/inc/config.php add
array( "type"=>"tab", "name"=>"Comments review", "options"=>array( array( "type"=>"title", "name"=>"Comments review options" ) , array( "type"=>"select", "name"=>"Show review comment", "description"=>"Activate comment review user", "id"=>"cwppos_show_userreview", "options"=>array("yes"=>"Yes","no"=>"No"), "default"=>"yes" ) ) ) ,and finally inc/cwp_comments.php
$options = cwppos(); if( $options['cwppos_show_userreview'] == "yes" ) : add_action( 'comment_form_logged_in_after', 'cwp_additional_fields' ); add_action( 'comment_form_after_fields', 'cwp_additional_fields' ); add_filter('comment_text', "cwp_pac_comment_single"); endif ;