Syed Nabeel
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Address Book] Add new address on checkoutHi Matt,
Thank you for the response.
Let me make it simpler.
There are two ways / options to Add a New Address
1: My Account
2: Checkout
In My account page it is working perfect, as there is Save Button to save the address. But on checkout when you try to add a new address there is no Save Button. So, some time in rare case (when you by any chance go to my account or any other page and then comeback to checkout) it works but normal and in most use case it didn’t and throw errors for Shipping Addresses.
This might be because it is not saving the address and so the checkout didn’t finds any shipping address details. However, If you chose any address from the drop down list it works fine.
RegardsWell, I was working on the same to modify the code. and now the good news is, I get it solved.
here is the updated snippet that might help the community.function download_invoice_button( $actions, $order ) {
$actions['download_invoice'] = array(
'url' => wp_nonce_url( home_url( '/?attaching_pdf=1&print_packinglist=true&email='.base64_encode( $order->get_billing_email() ).'&post='.base64_encode( $order->get_id() ).'&type=download_invoice&user_print=1&wpnonce='.wp_create_nonce( 'wf-woocommerce-packing-list' ) ), 'wf-woocommerce-packing-list' ), 'name' => _( 'Download Invoice', 'textdomain' )
);
return $actions;
}
add_filter( 'woocommerce_my_account_my_orders_actions', 'download_invoice_button', 10, 2 );This code should go into your theme’s function.php file
Thanks and Regards,
NabeelDear Cold,
Quoted snippet was for any other page. And I was concerning about for my-account/orders page which is WooCommerce page.
Though I have tried it in different ways already but I am getting ‘critical site’ error.
RegardsHi Cold @cold2425
I have looked into it and tried already but it breaks down the site. Which is why I opened the topic.
Thanks and RegardsHi Kris – @wpmudevsupport13
Yes, Here is the link where the form is being populated.
I have tried with the CSS and it was 99.9% done but not responsive. On different screens, it is coming on to the next line.
Thanks and Regards,
NabeelForum: Plugins
In reply to: [WooCommerce] Automated Account Overview Monthly Email to CustomersHi, Thanks for your quick response
I am already been using that plugin and check it out completely there’s nothing as such what I needed.
Also, I have been searching for a month so I have checked many plugins but none of them offering such a feature that I thought will be quite easy and common.
Please let me know if still, the scope is unclear.
I’ll be very helpful for your help in this regard.
Many thanks and regards
Forum: Plugins
In reply to: [Smart Slider 3] Hide Arrows and Bottom BulletsHi, Ramona and thanks for your kind response.
Well, I haven’t purchased yet but will be in future. However, I have tested and try on Smart Slider’s portal to check but it didn’t worked the way I needed. Also, I have checked on another site which has the pro version installed but still didn’t get a luck.
Actually, Plugin is all good as required but only when there are 4 slides at-least or more. I got three on which it is hiding the navigation button and is not sliding.
if you can help me with this, I will be very grateful to you.
Many Thanks and Regards
Hi, @aizad81
Put this CSS snippet either by using Code Snippets plugin OR as defined by @wpmudev-support2
.forminator-select.forminator-select-dropdown-container--open .forminator-select-dropdown .select2-results .select2-results__options{ max-height: none !important; overflow-y: visible !important; }
Hope this will work.
Thanks@wpmudev-support2 Thank you so much for the help.
It works absolutely fine. Please also add this fix in next update.Many thanks
Regards
Forum: Fixing WordPress
In reply to: WP top admin bar but no dashboard after loginHi, @jerry4565
Just in case you didn’t get access to the dashboard so you can simply rename it back to the original one. When you rename the plugin folder name then no plugin will be shown to you onto the dashboard which means that the error is coming from one of your plugins.No, but its effect due to plugins. However, this is just a test. once you found that plugin which is effecting your dashboard then you just have to deactivate that.
Thanks
Forum: Fixing WordPress
In reply to: WP top admin bar but no dashboard after loginHi, @jerry4565
The first thing you try is to go to your root directory either through FTP or by hosting provided Cpanel and navigates to the folder wp-content/plugins. Now rename the plugin folder name to old_plugin and visit the admin, if you get access to your dashboard then you rename it to original and check by activating and deactivating the plugin one by one. Once you get the same error again so this mean that a particular plugin making this problem. Repeat the process again and keep deactivate the plugin which caused an error and contact their support to fix.
Second Try: Go to your FTP or Cpanel and on the root directory there will be a file named “.htaccess” usually it is a hidden file so might you need to find it by searching it on your root and make visible all hidden files. Again you need to rename it like “.htaccess_old” and check the site, this might get you access.
Third Try: Go to FTP or Cpanel and make sure all folders and files have the file permission as 744 or 755. Specifically, the folder named “wp-admin” simply right-click on it and the last option on drop down is file permission.
Please let me know if this solved the problem.
Thanks
Forum: Fixing WordPress
In reply to: dimensione tagBuongiorno!
Si prega di incollare il codice seguente nel file css principale. Puoi aggiungere questo CSS nel tuo tema personalizzato fornito opzione css o visitando l’editor del tema e navigare al file style.css.a.tag-cloud-link {
font-size: 13px !important;
}Per modificare le dimensioni è possibile aumentare o diminuire il valore 13px
Forum: Plugins
In reply to: [WooCommerce] After update to version 4.3.0, my site brokenHey @cartoonistarif @chorvat @knitsrus @jasmehd and whoever facing this issue.
Actually, this error is coming from the WooCommerce Admin Plugin as it is not loading the note data properly.The temporary solution is simply to go the file from your Hosting Cpanel / FTP as “wp-content/plugins in this directory you will found a folder called “woocommerce-admin” in case you didn’t found here then go into the woocommerce/packages directory and look for the “woocommerce-admin”. Once you found this folder then go into its subdirectory as “woocommerce-admin/src/Notes” here you will find the file called “DataStore.php” open this file and look for the line
”
throw new \Exception( __( ‘Invalid data store for admin note.’, ‘woocommerce-admin’ ) );
”Now, all you need to do is to comment this line by placing double slash // at the beginning of this line. You can also copy and replace this line with the below code and save the file.
/* throw new \Exception( __( ‘Invalid data store for admin note.’, ‘woocommerce-admin’ ) ); */
When you have done this, you will regain access and from your dashboard, you can simply deactivate the woocommerce-admin plugin or this extension for a temporary basis until its author fixes the issue.
Thanks and Regards
Syed Nabeel- This reply was modified 4 years, 4 months ago by Syed Nabeel.