Patrik
Forum Replies Created
-
AuthorPosts
-
Hi Gui,
You can find the hooks and filters in files of supreme directory folder and also in Directory starter theme as it is the parent theme of SD. You can find ‘do_action’ and ‘do_filter’ from SD folder using the text editor or IDE application. If possible let us know what exactly you want to do so that we can tell you the possible hook or filter for that.
Let me know if you have any question.
Regards,
PatrikThis reply has been marked as private.Hi jotomas,
Can you provide us the FTP details in private reply so that we can look into this issue? If you have a staging site then provide its credentials as well.
Regards,
PatrikHi Gui,
SD is the child theme. You can use the hooks from both GD and SD in the SD child theme. You can either find hooks and filter by searching in the folder or you can go to the function which you want to customize and look for the hook or filter.
Let me know if you have any questions.
Regards,
PatrikHi M Jin,
Kindly provide admin and FTP details in private reply to have a detailed look into your site.
Regards,
PatrikHi Akash,
It seems there is an issue with $_POST data on your site. So we have changed the form to use GET method instead of POST and now it works fine. Can you please check it from your side as well and let me know how it works? Also, check on your main site.
Regards,
PatrikHi Guilherme,
You can try to put following code in your currently active theme’s functions.php file and let me know if it works or not for you.
add_action('sd_detail_before_cat_links', 'sd_detail_before_cat_links_cb'); function sd_detail_before_cat_links_cb(){ global $post; //Display custom fields echo $post->geodir_division; }
You have to use your custom field HTML variable name with ‘geodir_’ prefix.
Regards,
PatrikHi Ashish,
I am not sure I understand what you want to ask. But stripe will also have the same flow as paypal. A user adds listing and go to checkout and pay using stripe details.
More info you can get here: https://wpinvoicing.com/docs/
Regards,
PatrikHi Ashish,
There is no any error log showing in FTP. Maybe you can get it from your hosting provider or cPanel.
Also, There are only non-recurring invoices you have created which will not display in invoicing-> Subscriptions as invoicing-> Subscriptions will display subscriptions created by recurring invoice which contains the recurring item and there is no any recurring items/package you have created. So if you checkout with recurring invoice it will display in invoicing-> Subscriptions list.
Let me know if you have any queries.
Regards,
PatrikHi Anderson,
Please try the following code in your current theme’s functions.php file and let us know if it works for you or not:
add_filter('gd_adv_search_btn_value', 'gd_adv_search_btn_value_cb'); function gd_adv_search_btn_value_cb(){ return '<i class="fa fa-cog" aria-hidden="true"></i>'; }
Also, remove the changes you have made in core files before trying this.
Regards,
PatrikHi Akash,
It seems one of the plugins or the theme is modifying the $_REQUEST param and is causing an issue that we are not getting any fields from the form. We need to check by deactivating plugins one by one and as this is the live site, I suggest to do it on the staging site first and then fix on live site.
Let me know your thoughts.
Regards,
PatrikHi Ashish,
It takes time to get invoice updated due to delay in PayPal response but I can see it is receiving the response and update the invoice to paid with PayPal transaction ID added to notes. If possible provide us the error log where we are dumping the data for payments.
Also, Can you explain where you are not seeing the subscriber with example screenshots or steps so that we can look more into this?
Regards,
PatrikHi Guilherme,
Kindly provide us the admin and FTP details in private reply so that we can look into this and provide you some solution.
Regards,
PatrikThis reply has been marked as private.Hi Ashish,
The FTP is again not working. We need to check if IPN response is processed properly or not so please provide us the FTP details so that we can look into it.
Regards,
Patrik -
AuthorPosts