Allen Chu
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] All widgets are goneI’ve the same issue here.
under php 5.4.5
Ocean extra 1.4.29 widgets all disappear
Ocean extra 1.4.2 runs well.under php 5.6
Ocean extra 1.4.29 have no issue.It’s hard for me to change the php version on shared server
so please make sure Ocean Extra more reliable.- This reply was modified 7 years, 7 months ago by Allen Chu.
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Multiple Custom Taxonomies ?I’ve tried and make something available for my scenario:
Create a parent level term above others in My Custom Taxonomy.
Use taxonomy-term instead of custom-post-type-archive in Menu,
and works fine (even with several different taxonomies).function custom_taxonomy( $taxonomy, $widget_args, $widget_values, $menu_class){ global $post; $taxonomy_names = get_object_taxonomies( $post ); $taxonomy = $taxonomy_names[0]; return $taxonomy; } add_action('advanced_sidebar_menu_taxonomy','custom_taxonomy', 10, 4);Forum: Plugins
In reply to: [Advanced Sidebar Menu] Multiple Custom Taxonomies ?And I think it’s better to detect current taxonomy type and generate $taxonomy value dynamically, instead of manually change it. But these behavior may not fit the plugin structure and not easy for me to achieve. Need some help here. Thanks.
The search method count every field as individual, even in same entry. If the entry contains a keyword in 3 different field, it will show 3 times in search result. At least I think the repeat can be avoided.