keno1234
Forum Replies Created
-
Thank you.
It’s work! Thank you very much.
Forum: Plugins
In reply to: [Disable WP REST API] Can’t install “allow REST access for CF7”Thanks for the fast reply.
The error is now fixed. Thanks.Forum: Plugins
In reply to: [Disable WP REST API] Prevents MAC’s from submitting CF7 FormsHello,
I can’t install “allow REST access for CF7”, it said “The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Invalid End of Central Dir Record size : 17”
Please help.Thanks
Thanks for your help.
I’ve found a temporary solution. (Sharing for others who have the same need)
1. Addadd_action('post_grid_loop_top', 'post_grid_pagination_normal', 1, 2);
to theme’s functions.php file
2. Go to Post-grid plugin folder, findpost-grid-hook.php
file and add$post_grid_wp_query
todo_action('post_grid_loop_top', $args, $post_grid_wp_query)
;Note: You can’t update the plugin otherwise, you need to redo step 2.
Forum: Themes and Templates
In reply to: [OceanWP] How to Add Excerpt to Woocommerce Archive PageHi,
Do you know how to limit the Excerpt?
I try this code below but it doesn’t work.
function wpdocs_custom_excerpt_length( $length ) { return 2; } add_filter( 'excerpt_length', 'wpdocs_custom_excerpt_length', 999 );
Thank you.
Hi Amit,
Thanks for your reply. Could you please advise me how to use child theme to add the code for Top Bar>Content>Content?
Thank you very much.
Forum: Plugins
In reply to: [WooCommerce] Links on mobile devices require double taps.Yes the links on the menu are same – have to tap 2 times. (The menu have no sub-menu)
The product links, product catalog links and product tag links are also same.
But the content posts links, content catalog links and contect tag links are working fine.I’ve just tried with Chrome on Android mobile. All of the links are working fine.
I will try with others iPhone and let you know.
Thank you very much for your help.
Forum: Plugins
In reply to: [WooCommerce] Links on mobile devices require double taps.I know they are standard links. But my problem is when I use mobile device (Safari – iPhone) for going to pages or posts on my website. I have to tap it 2 times rather than just tap it once as usual.
Forum: Plugins
In reply to: [WooCommerce] Links on mobile devices require double taps.Yes, on the menu for example the tab to go to Shop page, My Account page, the navigation tabs, the links to go to products pages.
Forum: Fixing WordPress
In reply to: urls are broken after automatically updated to ver. 4.1.4Thank you very much Thomas.
I come up with an idea. I think when WordPress updating they should have code to check the structure of database, that check the varchar of post_name table, if it not 200 then change to 200.
So if I could found the code and change from 200 to 2000, it should be fine, right? Then every time I want to update wordpress just change the code in the newer version file then update it manually.
However, I don’t know where the code line is. Do you have any idea?
Forum: Fixing WordPress
In reply to: urls are broken after automatically updated to ver. 4.1.4Thank you Thomas for the reply.
I can change the database by myself but after WordPress updating, they automatically changed the post_name to be back to 200 varchar. So the slug that longer than 200 varchar was cut, even I tried to change the post_name back to 2000 varchar, the slugs which have been cut are still less than 200 varchar. So my post urls are broken.
I can deactivate the plugin (no need to use) but since the plugin has changed the varchar to 2000 and my slug are more than 200, I cannot update WordPress without braking the post urls.
Please help me to be able to update WordPress without changing varchar of the post_name.