Jayaram Maharjan
Forum Replies Created
-
Hello there,
Yes, I would like to remove the image that is appearing from the theme on the shop page products. Product image is appearing twice one from this theme and one from a plugin. I would like to disable the image from the theme and use the image from plugin. It would be nice if you provide a suggestion to remove this product image from each product item on shop page.
Thanks
Forum: Fixing WordPress
In reply to: wp_remote_get is not working after wordpress update to 4.6Hello @dion Hulse,
Thank you for your response ??
I figure out the issue. There was a double ‘//’ in the url (https://graph.facebook.com//oauth/access_token?client_id=%s&client_secret=%s&grant_type=client_credentials) due to which the issue was appearing. After I removed the ‘//’ from the url with single ‘/’ the issue got resolved.
function get_fb_access_token(){ $apsc_settings = $this->apsc_settings; $api_url = 'https://graph.facebook.com/'; $url = sprintf( '%s/oauth/access_token?client_id=%s&client_secret=%s&grant_type=client_credentials', $api_url, $apsc_settings['social_profile']['facebook']['app_id'] , $apsc_settings['social_profile']['facebook']['app_secret'] ); $access_token = wp_remote_get( $url, array( 'timeout' => 60 ) ); if ( is_wp_error( $access_token ) || ( isset( $access_token['response']['code'] ) && 200 != $access_token['response']['code'] ) ) { return ''; } else { return sanitize_text_field( $access_token['body'] ); } }
Forum: Plugins
In reply to: [WordPress Social Login] Facebook ProblemsHello @el cocinero de rota
This means that you Facebook app need to make live. You can make your Facebook app live by going to app review section and make your app live.
Hope this helps ??
Hi monk_amritanshu,
Thank you for your suggestion. But I managed to fix the issue.
What i was trying to do was; I was adding 2 shortcodes in a page one in a footer with newsletter subscription form and another in a popup which was hidden initially and it is footer as well and when popup appear there will be 2 subscriptions form due to which this weird issue was appearing. So What I did was when popup is there I did a removal of the subscription form from the footer section and when popup closes I again added the subscription form in that footer section. And I fixed my issue.Thanks
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] Security holeYeah, I’m also having this issue I can use administrator email address and can easily login to a site as a administrator user. I’m just wondering how to fix this security hole
Thanks
Forum: Fixing WordPress
In reply to: how to fix file upload size in wordpressI recommend to follow these instructions
https://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/Forum: Fixing WordPress
In reply to: Admin area frozen after loading pluginThe error might be occuring due to the currupt buddypress installation. Have you tried to delete the plugin folder of buddypress by using cpanel or ftp?
Forum: Fixing WordPress
In reply to: Error while creating new postOh! Sorry for my misunderstanding.
There might be some plugins that is doing the automatic comments for posts and pages. Have you tested by disabling all plugins that might be causing.Forum: Fixing WordPress
In reply to: Error while creating new postyou need to manually delete the code for comments by going to page.php and single.php in theme’s folder to remove the comment for pages and posts.
Forum: Fixing WordPress
In reply to: install template on more than one deviceThe best practice to work with template by multiple people is either use the SVN or access files by setting up the local server and access it via LAN connection(one file by one person at a time, multiple access may cause loss of the data to the file of either one).
Forum: Installing WordPress
In reply to: Initial installationhave you checked this page?
https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/My be this will help.
Thanks
Forum: Plugins
In reply to: [Woocommerce CSV importer] Product out of stock after importIf your site don’t manage the product by stock just go to woocommerce setting and products tab and click on inventory and and dis select the stock management and you are done.
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom taxonomyHi there,
Can you please provide me your email address so that I can send a link.
Thanks
Forum: Plugins
In reply to: [Events Manager - Calendar, Bookings, Tickets, and more!] Custom taxonomyI did and I have made search available for this taxonomy too. The search filter is also showing in the frontend but the problem is that this filter is not filtering out the post events for that custom taxonomy although the ajax call makes successful query with selected custom taxonomy’s term.