angwk
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] CSV import IssuesI have WordPress 5.1 and WooCommerce 3.5.6 but still get the “File type not permitted” error when trying to import csv files into WooCommerce products.
I contacted my host SiteGround who told me they have a lot of customers who experienced the same issue and they resolved the problem for them by using “define( ‘ALLOW_UNFILTERED_UPLOADS’, true );” within the wp-config.php.
Can I know whether users of other hosting providers also experience the same issue? Apparently WooCommerce.com/Automattic had marked the bug being fixed on their GitHub thread with WP version 5.0.3.
Forum: Plugins
In reply to: [WooCommerce] WP 5.0.1 breaks WooCommerce csv import?I am using WordPress 5.1, Woocommerce 3.5.5, all theme and plugins are updated to latest versions. But I am still getting the same error that this file type is not permitted for security reasons, when trying to import a csv file into WooCommerce.
I have deactivated all plugins except WooCommerce but still get this error.
I thought that someone mentioned that this issue was addressed by a later version of WordPress?
Forum: Plugins
In reply to: [KIA Subtitle] How to make subtitle searchable in WP Search Box?At https://wordpress.org/plugins/kia-subtitle/ under the FAQ section and the topic “Can I add the subtitle to the Page Title Meta tag”, you provided the following code:
function kia_add_subtitle_to_wp_title( $title ) {
if ( is_single() && function_exists(‘get_the_subtitle’)) && $subtitle == get_the_subtitle( get_the_ID() ) ) {
$title .= $subtitle;
}
}
add_filter(‘wp_title’,’kia_add_subtitle_to_wp_title’);Forum: Plugins
In reply to: [KIA Subtitle] How to make subtitle searchable in WP Search Box?Thanks. You have provided a code for adding the subtitle to the Page Title Meta tag.
What modifications need to be made to the code if the subtitle is to be added to the WooCommmerce Product Title meta tag? Will this make the subtitle searchable? Since the WP search box can search for keywords in the Product title?
I tried putting your code to the child theme functions.php but it isn’t working. I don’t know if your code also applies to adding subtitle to Product Title meta tag.
Thanks Alex, I had sent the login details to your email address.