jonahcoyote
Forum Replies Created
-
Hello,
I’ve been seeing a lot of these notifications as well in the past month or two. Most times when I go and try to inspect the suspect file, it is already gone from the backupbuddy_temp folder. So I just ignore, or if it is still there, I just delete the file. Any update on whether or not these are legit malicious files would be great!
Thanks,
JonahForum: Plugins
In reply to: [Gravity Forms Constant Contact] Invalid username / password comboYou gotta change your username to a non-email username. Worked for me ??
This works!
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Make Post Type PublicHey Johan,
Looks good to me, thanks for adding it!
– Jonah
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Make Post Type PublicHi Johan,
Here you go:
In /wp-content/plugins/custom-post-widget/post-widget.php:// Create the Content Block custom post type add_action( 'init', 'my_content_block_post_type_init' ); function my_content_block_post_type_init() { $labels = array( 'name' => _x( 'Content Blocks', 'post type general name', 'custom-post-widget' ), 'singular_name' => _x( 'Content Block', 'post type singular name', 'custom-post-widget' ), 'plural_name' => _x( 'Content Blocks', 'post type plural name', 'custom-post-widget' ), 'add_new' => _x( 'Add Content Block', 'block', 'custom-post-widget' ), 'add_new_item' => __( 'Add New Content Block', 'custom-post-widget' ), 'edit_item' => __( 'Edit Content Block', 'custom-post-widget' ), 'new_item' => __( 'New Content Block', 'custom-post-widget' ), 'view_item' => __( 'View Content Block', 'custom-post-widget' ), 'search_items' => __( 'Search Content Blocks', 'custom-post-widget' ), 'not_found' => __( 'No Content Blocks Found', 'custom-post-widget' ), 'not_found_in_trash' => __( 'No Content Blocks found in Trash', 'custom-post-widget' ), 'parent_item_colon' => '' ); $content_block_public = false; $options = array( 'labels' => $labels, 'public' => apply_filters( 'content_block_post_type', $content_block_public ), 'publicly_queryable' => false, 'exclude_from_search' => true, 'show_ui' => true, 'query_var' => true, 'rewrite' => true, 'capability_type' => 'post', 'hierarchical' => false, 'menu_position' => null, 'supports' => array( 'title','editor','revisions','thumbnail','author' ) ); register_post_type( 'content_block',$options ); }
…and then the working filter:
function filter_content_block_init() { $content_block_public = true; return $content_block_public; } add_filter('content_block_post_type','filter_content_block_init');
Might not be the most elegant (I’m no PHP pro) but it works!
Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Compatibility with Visual Composer?Forum: Plugins
In reply to: [Content Blocks (Custom Post Widget)] Compatibility with Visual Composer?Hey, Visual Composer is one of my favorites! https://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 – Since I love both of these plugins so much, I’m going to write up a quick tut today on how to use Custom Post Widget with VC. Stay tuned!
– Jonah
Forum: Plugins
In reply to: [Awebsome! Browser Selector] Not Working in Safari 7Nevermind, false alarm…
Forum: Plugins
In reply to: [WP FullCalendar] Category menu not appearingYou’re welcome. Here’s one way to change that text:
function filter_translations($translation, $text, $domain) { if ($domain == 'dbem') { switch ($text) { case 'All Event Categories': $translation = 'View All Events'; break; } } return $translation; } add_filter('gettext', 'filter_translations', 10, 3);
Forum: Plugins
In reply to: [WP FullCalendar] Category menu not appearingHey cowgirly,
Try removing this code:
'exclude_from_search'=>false
On line 78 of /wp-content/plugins/wp-fullcalendar/wpfc-admin.php
Then, you can go into the Settings > WP FullCalendar and check Events under post types and check tags and categories!
I’m going to create a separate thread for the plugin author to fix this…
Cheers,
JonahForum: Plugins
In reply to: [The Events Calendar] Untitled pageHi natproff,
We can’t really help you with this here but it sounds like something related to this FAQ that may help: https://tri.be/faqs/the-calendar-page-title-shows-title-of-an-event/
I hope that helps!
– Jonah
Forum: Plugins
In reply to: [The Events Calendar] Problem changing slugHi sharpfoundry,
Unfortunately this is not possible without some magical hackery which we won’t be able to help you with. Maybe someone else has an idea or you can try figuring it out on your own. Good luck!
– Jonah
Forum: Plugins
In reply to: [The Events Calendar] tribe_is_passed() functionHi ababra,
tribe_is_past() is only used to detect if the current query is for past events, not for a single event. I’m not sure how else you can do this, it’s definitely possible, but I cannot help you here. You might try comparing the start/end date to today’s date instead… Or, search through our docs: https://docs.tri.be/
– Jonah
Forum: Plugins
In reply to: [The Events Calendar] Calendar View Absent — Error Msg "Sorry…"Hi OverYonderField,
Try using this fix by pasting into your theme’s functions.php file: https://gist.github.com/jo-snips/6004270
– Jonah
Forum: Plugins
In reply to: [The Events Calendar] Dates bugHi guys,
This should now be fixed in 3.0.2 as well as the unrelated issue that my-web just posted ?? Go download 3.0.2 and let us know if it works!
Thanks,
Jonah