johnespindola
Forum Replies Created
-
Hi Sunny,
Thanks for your answer. Do you have any documentation with which I can guide me to implement that functionality to see the list of questions on the dashboard? this would be a great help for me.
And yes, I will leave my rating, it has helped me a lot.
Thank you!
Forum: Plugins
In reply to: [Remove CPT base] 404 errorHello.
I have tried adding the configurations that you sent me and everything works fine.
I really thank you very much 🙂Forum: Plugins
In reply to: [Remove CPT base] 404 errorHello,
No problem, I haven’t been able to find a solution to this problem yet.
I hadn’t thought about what you’re saying about using “products” as the cpt name 🙁 … but, maybe an error could be occurring with the taxonomy declaration … maybe I’m missing something … could you help me checking it, please?register_taxonomy(
'product_type',
'product',
array(
'labels' => array(
'name' => 'product Types',
'add_new_item' => 'Add Type',
'new_item_name' => "New Type"
),
'show_ui' => true,
'show_tagcloud' => false,
'hierarchical' => true,
'args' => array( 'orderby' => 'term_order' ),
'rewrite' => array( 'slug' => 'product-category', 'with_front' => false ),
'query_var' => false,
'capabilities' => array('manage_terms' => 'edit_pages')
)
);Forum: Plugins
In reply to: [301 Redirects - Redirect Manager] URL Still redirecting after removeThank you very much!
Indeed, there was a folder on the server with the same name as the URL with an HTML file that redirected to the other URL.
Your feedback was very helpful.