Tyler Johnson
Forum Replies Created
-
Forum: Plugins
In reply to: [Merge + Minify + Refresh] High number of minified files appearingI’m not the plugin developer, but I believe that’s a normal operation because you have files being loaded in the footer and the header, as well as administration files when logged in, which also get minified.
- This reply was modified 7 years, 9 months ago by Tyler Johnson.
Forum: Plugins
In reply to: [WordPress Instant Articles] What is the feed url?If I’m not mistaken, this plugin is not for Facebook Instant Articles, so there isn’t a feed. This plugin is for loading articles, using Facebook’s techniques, on your own site more quickly.
Forum: Plugins
In reply to: [Simple Membership] Plugin not working after using redirect addonI’m having the same exact issue, but I don’t have WooCommerce installed. Protected pages are acting like I’m not logged in and like I don’t have access, even though I’ve confirmed that I should.
Hey Daniel,
Correct, it’s only an issue on new posts/pages. There’s no issue when editing posts or on the new pop-up editor.
Had the same thing when working on a site, which thankfully wasn’t live. Doesn’t conflict with drafts or editing of older posts, but when adding a new post there’s a conflict with the TinyMCE Editor after the update.
Here you go rolyestemonio,
/** Filter for Pop-up **/ function wpdev_popup_trigger( $is_loadable, $popup_id ) { if ( $popup_id == ID HERE ) { if ( !is_user_logged_in() ) { $is_loadable = true; } else { $is_loadable = false; } } return $is_loadable; } add_filter( 'popmake_popup_is_loadable', 'wpdev_popup_trigger', 1000, 2 );
You can get the ID by going to the editing screen for the popup, look in the address bar and find the number that comes after post=. Under if(!is_user_logged_in()), remove the ! if you’d like only logged in users to see the pop-up. It’s currently set to show non-users.
Hey René,
I tested creating a new app ID, but that didn’t fix it. However, taking the code from Facebook’s plugin generator site and inputting it myself using a plugin (code is below), comments display fine and I’m still able to share just fine. So, something other WordPress Facebook comments plugins are adding is causing the issues.
<?php /** * Plugin Name: WP Developers Facebook Comments * Plugin URI: https://wpdevelopers.com * Description: Facebook comments by WP Developers. * Version: 1.1 * Author: Tyler Johnson * Author URI: https://tylerjohnsondesign.com * License: GPL2 */ $appid = 'FACEBOOKAPPIDHERE'; // Add Facebook Code to Footer function wpdev_fbcomments_footer() { global $appid; if($appid) { echo '<div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5&appId=' . $appid . '"; fjs.parentNode.insertBefore(js, fjs); }(document, \'script\', \'facebook-jssdk\'));</script>'; } } add_action('wp_footer', 'wpdev_fbcomments_footer'); // Output Facebook Comments function wpdev_fbcomments() { global $appid; if($appid) { $output = '<div class="fb-comments" data-href="' . get_permalink() . '" data-width="100%" data-numposts="6"></div>'; return $output; } } add_shortcode('wpdevfb', 'wpdev_fbcomments'); add_action('wpdevfb', 'wpdev_fbcomments');
Forum: Reviews
In reply to: [Disqus Conditional Load] AwesomenessNo problem! Awesome plugin! ??
Forum: Reviews
In reply to: [Document Importer by Plugmatter Lite] Scam/Limited & Doesn't WorkHey Syed,
I don’t like leaving negative reviews for good developers, so I’d like to change it to a higher rating if the fixes have been implemented. Any news on when those will be out?
Forum: Reviews
In reply to: [Document Importer by Plugmatter Lite] Scam/Limited & Doesn't WorkHey Syed,
I’m always up for changing my review if other developers make good changes! Once the update comes out, I’ll check it out and update my review accordingly! Have a great day man!
Also, the file I couldn’t get uploaded is a test.docx file for testing between Office applications. You can download it here: https://www.wup.pl/images/uploads/pliki_przykladowe/test.docx
No problem! Use away Frank. And I’ll pull it if I have time.
Have a great day!
Hey danb11,
I really needed this functionality and new it would be easy to add. So, here’s how to add it:
1. Go to plugins > quiz-master-next > php.
2. Open qmn_results.php.
3. Go to line 143 and add this after the</script>
tag:<script language="JavaScript"> function toggle(source) { checkboxes = document.getElementsByName('delete_results[]'); for(var i=0, n=checkboxes.length;i<n;i++) { checkboxes[i].checked = source.checked; } } </script>
4. Go to line 222 and in between the
<th>
tags, add:<input type='checkbox' onClick="toggle(this)" />
5. Now save! And you’ll have a bulk select checkbox, so that you can bulk delete all results displayed on the page.
Hey klaas,
I really needed this functionality and new it would be easy to add. So, here’s how to add it:
1. Go to plugins > quiz-master-next > php.
2. Open qmn_results.php.
3. Go to line 143 and add this after the</script>
tag:<script language="JavaScript"> function toggle(source) { checkboxes = document.getElementsByName('delete_results[]'); for(var i=0, n=checkboxes.length;i<n;i++) { checkboxes[i].checked = source.checked; } } </script>
4. Go to line 222 and in between the
<th>
tags, add:<input type='checkbox' onClick="toggle(this)" />
5. Now save! And you’ll have a bulk select checkbox, so that you can bulk delete all results displayed on the page.
The posts are pulled in via RSS feed and posted.
This is still an issue. Can anyone help please? I can provide screen shots. And the log above is for an item in an excluded category.