especht
Forum Replies Created
-
That is great to hear! Thanks for the quick reply.
- This reply was modified 1 year, 4 months ago by especht.
Thank you for the reply. We’ll look into the shortcode approach you suggested.
We just realized that the issue of the sidebar not being responsive only applies to the preview. When viewing the published page, it’s working as expected. So this item can be closed.
Thank you for the reply. The site only exists on our local machines at the moment, but I’ve found out more info that may help diagnose the problem.
The issue is that the sidebar template has responsiveness set up in the settings and when we preview it for tablet or mobile it responds as expected. But when we add that responsive sidebar to a template or to a page, it loses the responsiveness.
I have taken two screen shots of the sidebar showing responsiveness and it not when in a page, but I can’t find how to attach an image to this ticket.
Forum: Plugins
In reply to: [Elementor Custom Skin] PHP Fatal Error: is_built_with_elementor()We’re having the same problem when we tried importing a page template that uses the Ele Custom Skin plugin from one site to another site. Any ideas of what could cause this?
Forum: Plugins
In reply to: [Autoptimize] “Also aggregate inline CSS” doesn’t seem to be doing anythingThank you so much @optimizingmatters! That worked.
Forum: Plugins
In reply to: [YOP Poll] [Problem] ‘Template is Missing’I’m experiencing the same problem with a new install. I’m using the latest version of the plugin and the latest updated version of WordPress. I’m not seeing any templates.
Forum: Plugins
In reply to: [WP REST Filter] how to filter using custom argumentI figured it out. To get this working, I needed to add the argument to rest_query_vars with this:
function wpse_20160526_rest_query_vars( $valid_vars ) {
$valid_vars = array_merge( $valid_vars, array( ‘queryByTitle’ ) );
return $valid_vars;
}add_filter( ‘rest_query_vars’, ‘wpse_20160526_rest_query_vars’, PHP_INT_MAX, 1 );
After that, this URL worked:
/wp-json/wp/v2/posts?filter[queryByTitle]=some-text