My client was using the Prestashop 1.6 and and getting the authentication error when his visitor wants to create an account. Site is giving the following error: TECHNICAL ERROR: unable to load form. Details: Error thrown: [object Object] Text status: parsererror If your friendly URL option is turn on at backend, sometimes this kind of error… Continue Reading
Code
Hiding Cart Menu Item When Cart is Empty
I had an interesting question from a user who wants to hide the cart item from the menu when cart is empty. This tutorial will only work if you are using the WooCommerce plugin. I added the simple PHP snippets into my functions.php file. Here is the code <?php //* do not include this line… Continue Reading
Adding Custom Tabs in WooCommerce Product Details Page
In this tutorial I shall show you how you will add custom tabs with content on WooCommerce product details page. By default there have two tabs: Description & Reviews. I am wanting to add more tabs there. Here is the small PHP snippets for it. <?php //* Don’t include this line /** * Displaying custom… Continue Reading
[GravityView] Displaying Only Unapproved Entries
Just drop this simple PHP snippets at end of functions.php file. It will fetch all unapproved entries from database. <?php //* Don’t include this line /** * Displaying unapproved entries * * @author Paul * @license GPL2.0+ */ add_filter(‘gravityview_get_entries’, ‘paul_awaiting_approval’, 1001, 3 ); function paul_awaiting_approval($parameters, $args, $form_id ) { $parameters[‘search_criteria’][‘field_filters’][] = array( ‘key’ => GravityView_Entry_Approval::meta_key,… Continue Reading
Update Price Automatically When Quantity Changes on Click
I built a order form using WordPress Contact Form 7 plugin. I’m wanting to update the price automatically when quantity field’d value is changing on mouse click or key press. See the animated image file. You can understand the requirement. I added the simple JS code into my js file. Assume your quantity field name… Continue Reading
Fixing JS Conflict Issue between Older BB plugin & WP 4.9.6
This tutorial will show how you will resolve JS conflicting issue between older version of BB plugin & WP 4.9.6. If you are not renewing the license of Beaver Builder plugin then this trick will help you. But I shall recommend that you will stick with Beaver Builder plugin and renew/buy your own license. Here… Continue Reading
Adding Custom Column at WooCommerce Order List Table
I am running a membership site and wanting to add an new column at my order listing table (WordPress Dashboard). I shall show the member’s age at that column. Here is my steps for this functionality: Creating Custom Field I’m saving the Date of Birth of my customers as a custom field data. I’m using WordPress’s… Continue Reading
Fixing PHP fatal error of WooCommerce Predictive Search Plugin
I updated the old version of WooCommerce Predictive Search Plugin with latest version and it produced the PHP fatal error: Parse error: syntax error, unexpected ‘.’, expecting ‘,’ or ‘;’ in /htdocs/wp-content/plugins/woocommerce-predictive-search/admin/admin-ui.php on line 37 I thought that Plugin’s files are not updated properly. So I downloaded the latest version from WordPress repository and uploaded the… Continue Reading
Enabling the avatar in custom comment types
Few days ago I worked on a project. Client was wanting extra two new types (review & question) at comment form. All things implemented successfully. Only problem was that avatar for review/comment type was not coming at frontend & backend. I researched too much and got that avatar is allowed for comment type only. But… Continue Reading