Aakif Kadiwala
Forum Replies Created
-
I’ve same problem with Paypal Payments plugin.
https://drive.google.com/file/d/1tePfeLsYob-oC5WvhLW-oiU3oXmXzq1H/view?usp=sharing
currently am using Sandbox account to test first.
Please let us know solution for this.
Paypal Standard is working fine which is available default in the woocommerce.- This reply was modified 1 year, 8 months ago by Aakif Kadiwala. Reason: addition
Forum: Plugins
In reply to: [Australia Post WooCommerce Extension] Not workingSeems to be issue is with the shipping settings.
Please let me know How users can get the Tracking Number for order ?
Forum: Plugins
In reply to: [HTML Template for CF7] Editor is not working for Header & FooterStill, after update – I can’t change the Header & Footer as per our needs.
Whenever i click to save, it’s comeup with default header-footer.If new editor is not working properly, then why this editor-update is needed in this plugin ? ??
Forum: Plugins
In reply to: [WooCommerce Square] CARD_DECLINED_VERIFICATION_REQUIREDYes I have used same test card as mentioned
I got the solution for this.
have to create YesevaOne-Regular.php and YesevaOne-Regular.z files with the help of YesevaOne-Regular.ttf file
and upload this YesevaOne-Regular.php & YesevaOne-Regular.z file in below path
plugins/gift-voucher/vendor/setasign/fpdf/fontthen use:
$pdf->AddFont(‘YesevaOne’,”,’YesevaOne-Regular.php’);
$pdf->SetFont(‘YesevaOne’,’B’,16);Forum: Fixing WordPress
In reply to: How to Create Post Attribute Just Like pages attributeHi @jamestyler,
Is that like – https://example.com/{category-name}/{parent-post-name}/{child-post-name}
if yes, Please update the create post-type code with ‘hierarchical’ => true
- This reply was modified 5 years, 10 months ago by Aakif Kadiwala. Reason: Add the solution
Forum: Plugins
In reply to: [10WebSocial] Some Insta Images not displayedHi,
Thanks for reply.
For temporary i have changed the plugin.And yes, on next working day i will be get back to your Support Team.
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] Sorry Please ignor…Wrong Thread
Forum: Plugins
In reply to: [Frontend Posts] Custom FieldsHi,
We have to update more functionality on this. Will update you soon as much as possible.
Thanks
Forum: Plugins
In reply to: [Posts Slider Shortcode] how to change the time of the pluginHi,
You can change the time of the slider with the help of CSS. Please apply CSS as per your requirement.
Thanks.
Forum: Fixing WordPress
In reply to: alert message for publishing post successfullyHi, you can try with the POST data when you publish or update the post.
For example:
In functions.php, please do type below code and do action on posts like update or create a new post.print_r($_POST);
In this POST data, you will find the condition that will match your criteria like current action, post_publish_type or any other unique action you can use to put the conditional logic.
- This reply was modified 6 years, 9 months ago by Aakif Kadiwala.
Forum: Fixing WordPress
In reply to: alert message for publishing post successfullyHi,
Please check this hooks for the attach Success message when post is published
add_action( 'draft_to_publish', 'your_functions_name', 10, 1 );
add_action( 'publish_post', 'your_functions_name', 10, 2 );
Other hook for the attach Success message when post is saved.
add_action( 'save_post', 'your_functions_name' );
Forum: Fixing WordPress
In reply to: Remove header and navigation menu on a specific pageHi @mabdelmawgood
Sorry for late response.if you want to remove full header from page – “https://chinaexpathealth.com/getfreequotes-fbma/”
Please try this :body page-id-1637 #td-outer-wrap div.td-header-wrap{ display:none }
we can use the ID of the specific page.
If you want to remove only Main Nav from the Header
Please try this :body page-id-1637 #td-outer-wrap div.td-header-wrap .td-header-top-menu-full{ display:none }
- This reply was modified 6 years, 10 months ago by Aakif Kadiwala.
Forum: Fixing WordPress
In reply to: Remove header and navigation menu on a specific pageHi,
have you use Parent Class in the Custom CSS ?
Please try this
body .error404 #td-outer-wrap div.td-header-wrap{ display:none }
Thanks