mathster
Forum Replies Created
-
I updated plugin.class.php in the plugin directory and applied the above link’s suggestions. Now the plugin works together with NGG plugin.
Edit this line:
$args_post = array( 'labels' => $labels_post, 'description' => __( 'Your Testimonials.', 'stars-testimonials' ), 'show_ui' => true, 'show_in_menu' => true, 'menu_icon' => 'dashicons-editor-quote', 'query_var' => false, 'hierarchical' => false, 'supports' => array( 'title', 'editor', 'thumbnail' ), 'show_in_rest' => true, 'supports' => [ 'custom-fields', ], ); /*Check for limitation*/ if($totalPostStatus) { $args_post['capabilities'] = array( 'create_posts' => 'do_not_allow', ); $args_post['map_meta_cap'] = true; } register_post_type( 'stars_testimonial', $args_post );
add: ‘supports’ => [
‘custom-fields’,
],in $args_post array.
cheers!
Forum: Fixing WordPress
In reply to: mediaelement prevents pages from loadingSame here, I’ve disabled a lot of my plugins (which is not ideal)
Nevermind, found it: https://docs.ultimatemember.com/article/1026-umaftersaveregistrationdetails
Greetings,
I am the developer, would you kindly point me to the right direction? i.e: What hooks/actions to edit?
Forum: Plugins
In reply to: [Custom Content Shortcode] Get the RSS link for taxonomies, posts & pagesMy code is now like this:
<table> [raw] [for each=category exclude=uncategorized order=asc] <tr class="story-item"> <td> [each link] </td> <td class="et-extra-social-icon rss"> <a href="[each url]feed" class="et-extra-icon et-extra-icon-background et-extra-icon-rss" target="blank" rel="noopener noreferrer"> </a> </td> </tr> [/for] [/raw] </table>
Thank you.
Forum: Plugins
In reply to: [Custom Content Shortcode] Get the RSS link for taxonomies, posts & pagesOh ok, thank you! that works.
Forum: Plugins
In reply to: [FP Foundation Assistant] Background image on columns?Hello,
I’ve manually added some stuff to the plugin, like excerpt length, pagination and adding id attributes to rows and columns.
No need to apologize, thank you for the wonderful plugin. I’m looking forward for the next release.
Mathster
Forum: Plugins
In reply to: [FP Foundation Assistant] Background image on columns?I’ve looked into the plugin’s code and edited it manually there, hopefully in the future there would be an option for this. Also, having an option to change the default background-size from “cover” to something else would be nice too. (I know I could just use CSS but I’m lazy XD)
- This reply was modified 6 years, 3 months ago by mathster.