Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
seoguru
tagDiv Member

Yes, when I remove the module and put it back, the posts appear, but only in the tagDiv composer.
The search page still shows no results.

seoguru
tagDiv Member

The problem was with jQuery; some functions were…
Uncaught TypeError: o.widget is not a function.
We solved the problem, but with a bit of a hack.

like this
function load_custom_jquery_ui() {
if (is_admin()) {
wp_deregister_script(‘jquery-ui-core’);
wp_enqueue_script(
‘jquery-ui-core’,
https://code.jquery.com/ui/1.12.1/jquery-ui.min.js’,
array(‘jquery’),
‘1.12.1’,
true
);
}
}
add_action(‘admin_enqueue_scripts’, ‘load_custom_jquery_ui’);

Now, if you’re logged in as an admin, some jQuery functions don’t work on post pages, but if you’re not logged in, they work.

There are no errors in the admin panel.

seoguru
tagDiv Member

I see that I can select a global template here, but how can I choose a separate template for an individual post while keeping the global template for the other posts?
https://prnt.sc/zF1pjSeYk1gI

seoguru
tagDiv Member

How can I create a template here that I can later select for individual posts, rather than importing it?
https://prnt.sc/_X9Qba0SF6x_

seoguru
tagDiv Member
Viewing 6 posts - 1 through 6 (of 6 total)