dollhauss
Forum Replies Created
-
Thanks,
Have done so. ??Forum: Plugins
In reply to: [Asset CleanUp: Page Speed Booster] Fatal error@gabelivan Cheers mate!
I checked the preloads.php file and you were correct – loads of rubbish at the top.
So I deleted the plugin and reinstalled and all is working great again. ??As you say – I’m probably going to have to remove and reinstall all plugins to clear everything up.
I already had Sucuri and WebARX security installed, so whatever it was snuck in secretly and started making a mess! Am wondering if it came in through a plugin backdoor. So will prob spend some time checking all plugins thoroughly before deleting and resinstalling them.
Thanks again – looking forward to seeing what new features you have in store!
I have just fixed the problem on my site.
It appears that Minifying HTML is the issue.I use WP Rocket – by turning off the Minify HTML setting all the fonts show ok on Edge.
Hopefully you Brainstorm guys can look into this. ??Having the same problem.
Custom fonts do not work on Edge.Forum: Plugins
In reply to: [WP Job Manager] Search button on Jobs pageForum: Plugins
In reply to: [Custom Post Type UI] Password Protect not working on CPTCool cheers mate.. ??
I’ll have a play around and see if I can find a solution.
It’s nothing essential – could just save teaching clients to set page templates.Thanks for all your help here!
Mucho appreciated!Forum: Plugins
In reply to: [Custom Post Type UI] Password Protect not working on CPTHeya Michael @tw2113 !!!
After what seems like forever digging around I finally found the real reason and solution! ??
The Page Attributes – Template needs to be set to “Elementor Full Width” and you have to set a custom support in the CPT called ‘elementor’.
With these set everything works as should be expected with Elementor templates and CPT-UI.I was just wondering – is there any way to globally assign a page template default to a CPT?
Cheers mate!
Forum: Plugins
In reply to: [Custom Post Type UI] Password Protect not working on CPTHiya Michael @tw2113
I have spoken with the Elementor team and they said this:
Make sure your CPT is added properly, specifically the capabilities for elementor and ‘show_in_rest’ => true,
e.g:
// Register Custom Post Type function custom_post_type_test() { $labels = array( 'name' => _x( 'Custom Post Type', 'Post Type General Name', 'cpt_test' ), 'singular_name' => _x( 'Custom Post Type', 'Post Type Singular Name', 'cpt_test' ), 'menu_name' => __( 'Custom Post Type', 'cpt_test' ), 'name_admin_bar' => __( 'Custom Post Type', 'cpt_test' ), 'archives' => __( 'Item Archives', 'cpt_test' ), 'attributes' => __( 'Item Attributes', 'cpt_test' ), 'parent_item_colon' => __( 'Parent Item:', 'cpt_test' ), 'all_items' => __( 'All Items', 'cpt_test' ), 'add_new_item' => __( 'Add New Item', 'cpt_test' ), 'add_new' => __( 'Add New', 'cpt_test' ), 'new_item' => __( 'New Item', 'cpt_test' ), 'edit_item' => __( 'Edit Item', 'cpt_test' ), 'update_item' => __( 'Update Item', 'cpt_test' ), 'view_item' => __( 'View Item', 'cpt_test' ), 'view_items' => __( 'View Items', 'cpt_test' ), 'search_items' => __( 'Search Item', 'cpt_test' ), 'not_found' => __( 'Not found', 'cpt_test' ), 'not_found_in_trash' => __( 'Not found in Trash', 'cpt_test' ), 'featured_image' => __( 'Featured Image', 'cpt_test' ), 'set_featured_image' => __( 'Set featured image', 'cpt_test' ), 'remove_featured_image' => __( 'Remove featured image', 'cpt_test' ), 'use_featured_image' => __( 'Use as featured image', 'cpt_test' ), 'insert_into_item' => __( 'Insert into item', 'cpt_test' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'cpt_test' ), 'items_list' => __( 'Items list', 'cpt_test' ), 'items_list_navigation' => __( 'Items list navigation', 'cpt_test' ), 'filter_items_list' => __( 'Filter items list', 'cpt_test' ), ); $args = array( 'label' => __( 'Custom Post Type', 'cpt_test' ), 'description' => __( 'Custom Post Type Description', 'cpt_test' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'elementor' ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => true, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'post', 'show_in_rest' => true, ); register_post_type( 'cpt_test', $args ); } add_action( 'init', 'custom_post_type_test', 0 );
Where would I be able to add these specific capabilities so I can ensure my CPT’s work correctly in Elementor?
Cheers!
- This reply was modified 5 years, 10 months ago by dollhauss.
Forum: Plugins
In reply to: [Custom Post Type UI] Password Protect not working on CPTCheers Michael.
I’ve been looking into it. The site in particular uses Elementor.
An Elementor template is set for the CPT and it is this template that is causing the issues.I’ve flagged it up with them and also personally looking into how these templates are set up.
Thanks again mate.
Forum: Plugins
In reply to: [Custom Post Type UI] Password Protect not working on CPTThanks for your reply.
I’ve tried with a few themes and they all give the same result. From Astra to Twenty Nineteen.
Was trying to get away from customizing template files but I’ll take a look and see why all the themes I’ve tried are having this issue.
By the way – I also tried another custom post type plugin and this issue was not present.
Will delve deeper.Cheers Michael…
Sorry – it appears to be another plugin with a similar name!
Great stuff!
Cheers guys! ??
Forum: Plugins
In reply to: [WP Job Manager] Search button on Jobs pageHeya,
I wouldn’t really class this as resolved at all.
For a plugin that has searching as one of it’s primary functions.
To not include a search button without hiring a 3rd party developer (even when your demos showcase a search button) is pretty bizzare.You can surely see how many problems this can cause – especially for users on mobile devices.
I’d only class this as resolved once you have either added a search button to the plugin or made an explicit note on the demo page to state that a search button is not available.
I understand you want to close topics to keep things neat but I think this should be kept open for other users to comment.
Cheers.
Forum: Plugins
In reply to: [WP Job Manager] Search button on Jobs pageCheers @jenhooks,
No problem, I’ll create the custom code required.
I just wanted to make sure there wasn’t an addon or tutorial already out there that covered this before I dedicated time to creating a search button.It does seem funny that your demo for WP Job Manager includes a search button yet it is impossible to have this functionality without heavy custom coding.
If the solution is fairly straight forward I’ll also leave my findings here.
Thanks! ??
Forum: Plugins
In reply to: [WP Job Manager] Search button on Jobs pageHiya @jenhooks
No I’m not using any addons – just vanilla WP Job Manager.
It’s the ‘Search Button’ I’m trying to add – not the keyword and location box, they are there by default. Adding using the [jobs] shortcode.
I’m assuming I need to customize the job-filters.php file to add input type=”search”.
I just cannot find any information online in regard to this?Cheers!