Sushil Adhikari
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MedZone Lite] Customizer color options lacks feature?Hey, its’s been long time we are waiting for the update? Are you guys still maintain this theme?
Thanks
Forum: Themes and Templates
In reply to: [MedZone Lite] Pull Customizer section to the pageGreat, I figure It out..Thank you So much for this awesome feature having customizer option for each and every page.
Thanks
Forum: Plugins
In reply to: [WooCommerce] WooCommerce digital downloads throw 403 forbidden errorThank you Hannah S for joining here on ticket, I had submitted this queries just to confirmed if this issue is from server but they conclude telling me this issue is due to the .htaccess( deny all ) file inside the woocommerce_uploads folder. Below I had attached support ticket.
https://drive.google.com/open?id=1NAxtk-XZ5yGp5vm16_Ke_XUxF4Uv-iai
Thank you for considering your time and concern, I look forward to hearing from you.
Best Regards
Sushil AdhikariForum: Plugins
In reply to: [WooCommerce] WooCommerce digital downloads throw 403 forbidden errorHI There,
could you please help me on this?
thanks
Forum: Plugins
In reply to: [WooCommerce] WooCommerce digital downloads throw 403 forbidden errorfiles added from dashboard are stored at woocommerce_upload folder only..
Thanks
- This reply was modified 6 years, 6 months ago by Sushil Adhikari.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce digital downloads throw 403 forbidden errorHI RK,
Thank you very much for your support, file permission for woocommerce_uploads( including all folders ) folder is 755 and single file is 644
I had added the downloadable files directly from woocommerce dashboard,
I look forward to your response.
Thanks
Forum: Themes and Templates
In reply to: [Make] Warning Error Messages: Unexpected Character in InputOne more things , Try to install WordPress files manually.
Thanks
Forum: Themes and Templates
In reply to: [Make] Warning Error Messages: Unexpected Character in InputHi there,
It sounds your website was hacked. Please check ntsct your hosting provider immediately.
At The mean time you can try these following steps to fix these issue.
– this mostly happens due to the encoded data above Main files of WordPress.
Root directory/index.php
Root directory/wp-settings.php
Root directory/wp-includes/plugins and may be some random files.Try to remove all encoded data on every files your errors shows.
Next process will be updatin all the plugins and themes. Remove any outdated plugin from your site.
Then install Wordfence plugin and search for malicious files. This plugin will track all the suspicious files on your website.
Note: Here to access the files you meed to login with cpanel or ftp.
Thanks
Forum: Themes and Templates
In reply to: [Storefront] How to Change Page Order in FooterHI @projects416,
YOu can create new menu, add page on that menu and use those menu on footer sidebar using navigation menu widget. https://prnt.sc/hqhkya
Best Regards
Forum: Themes and Templates
In reply to: [Storefront] Storefront handheld footer bar title attributeHI @clone,
YOu have to customize storefront_handheld_footer_bar_account_link() function of parent theme on to child theme functional file.
/** * This function overwrites storefront_handheld_footer_bar_account_link() of parent theme */ function storefront_handheld_footer_bar_account_link() { echo '<a href="' . esc_url( get_permalink( get_option( 'woocommerce_myaccount_page_id' ) ) ) . '" title="'. esc_attr__( 'My Account', 'storefront' ) . '">' . esc_attr__( 'My Account', 'storefront' ) . '</a>'; }
Note: This is untested version code, Please implement if you are technically well on WordPress.
Thanks
Forum: Themes and Templates
In reply to: [Storefront] Woocommerce Storefront Blog Page DisplayHi @purdygroup,
You can add read more tag on the position where you want to show brief summary of each post on blog page. You can refer to the below link on read more tag.
Reference link: https://en.support.wordpress.com/more-tag/
Best Regards
Forum: Themes and Templates
In reply to: [Styled Store] Slider problemHI fumipyo,
Thank you for your response.
It seems there is no product related to that specific category. Go to dashboard -> products -> category and check if product count showing the product assigned to it…
Thanks
Forum: Themes and Templates
In reply to: [Styled Store] Slider problemHi @fumipyo,
Could you send the website URL, so we can track the exact issue?
After choosing the product category please make sure it does contain the product with the featured image…More over the button on the slider image are tags of the product.
Thanks
Hi @wilkesvb,
Could you try this code, at my end it works perfect.
add_action( 'woocommerce_add_to_cart_redirect', 'theme_slug_child_variation_link' ); function theme_slug_child_variation_link() { if( isset( $_SERVER[ 'HTTP_REFERER' ] ) ) { return $_SERVER[ 'HTTP_REFERER' ]; } }
- This reply was modified 7 years, 6 months ago by Sushil Adhikari.
Improved version
/** * @return This will redirect to same page when adding a product on to the cart. * */ function custom_add_to_cart_redirect() { global $wp_query; if( get_option( 'woocommerce_cart_redirect_after_add' ) === 'yes' ) : return wc_get_cart_url(); else : $queried_data = $wp_query->get_queried_object(); $current_page_url = get_permalink( $queried_data->ID ); return $current_page_url; endif; } add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );