Omar Kasem
Forum Replies Created
-
Thank you for trying the plugin, i just fixed that issue and pushed a new version, please update now and try it again.
Forum: Plugins
In reply to: [Easy Plugin Demo Builder] Register site not work with pathThe issue happens when we try to create it in a sub directory for our main domain like here website.com/site/demo
But it works if we installed it directly to the main domain.
Forum: Plugins
In reply to: [Easy Plugin Demo Builder] Register site not work with pathThank you @redcastor
I had the same issue and that fixed it, i hope the author fixes it too.We are blocking anyone from accessing wp-login and redirecting them to our register page with the form, you can test it on your custom register page with any REST client and you will see that you can bypass all validation.
Forum: Plugins
In reply to: [WP Last Modified Info] Schema Markup not showing in custom post typesI think you have to edit the ‘is_singular( ‘post’ )’ in the function ‘lmt_json_ld_schema_markup’, thanks again for the plugin.
Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] can’t connect appSorry about these issues that are happening with you.
I recorded a small video to show how to connect to Facebook and make the plugin work
https://www.useloom.com/share/45086ce89014472db76b82505b926500
please watch and let me know your results.
Thanks.Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] Graph returned an error: (#200)Hey,
Thanks for helping me improve the plugin.I have been trying to recreate these errors but i couldn’t as i think that was an issue with the Facebook API which as been solved by the developers as they are making a lot of changes to their API because of the latest privacy issues they had, can you try using the plugin again with a new Facebook application ?
And please check the changelog for the latest bug fixes for the plugin.
And if you have any more questions please let me know.
Thanks.Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] can’t connect appHey,
Thanks for helping me improve the plugin.Where exactly did you get this errors on the plugin settings page or in the frontend while using the shortcode ?
I have researched the error message and it seems that there’s a problem about your Facebook application, please create a new application and try to connect with it through the plugin.
Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] review missing author in SchemaHey,
Thanks for helping me improve the plugin.Actually the author schema is there in the plugin but the reviewer name is no longer retruned from the Facebook API as they have changed their privacy policy.
About a solution,I’m waiting for my application to be approved by Facebook then i will change the way the plugin connect to Facebook which will be through my application so we can get the reviewer name.
Please if you have any questions please let me know.
Thanks.Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] Error when publishing pgeHello Andrius M,
Thanks for helping me improve the plugin.That was an issue with the shortcode being echoed instead of returned which is now solved, please update the plugin to latest version and it will work.
if you have any other questions please let me know.
Thanks.Forum: Plugins
In reply to: [Ultimate Reviews For Facebook] App domain issuesHello, Sorry for the late response.
You have to add your website url to the app domains section not your facebook page url.
and it should be added to this section ‘Valid OAuth Redirect URIs’ as you can see here
Please try again and let me know if you still facing any issues.
Thanks.- This reply was modified 6 years, 5 months ago by Omar Kasem.
Forum: Reviews
In reply to: [Ultimate Reviews For Facebook] greatThanks for your review.
About the reviewer name not shown its because of because of Facebook privacy changes.About a solution,I’m waiting for my application to be approved by Facebook then i will change the way the plugin connect to Facebook which will be through my application so we can get the reviewer name.
Thanks for the reply i submitted the issue for Github.
Forum: Fixing WordPress
In reply to: Hide product to a user roleTry this function in your functions.php file
function custom_pre_get_posts_query( $q ) { if(current_user_can('guest') || current_user_can('customer')){ $post__not_in = (array) $q->get( 'post__not_in' ); $post__not_in = array(27721); //Products IDS to hide $q->set( 'post__not_in', $post__not_in ); } } add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
Forum: Fixing WordPress
In reply to: Undefiend offset errorsThe problem is in the core files of wordpress not plugins, So you can try to re-install the current version of your wordpress.
By going to Dashboard > Updates > Re-install