contemplate
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress Global Search] BP Group Hierarchy conflict on Groups pageSorry for the delay. As soon as I disable the BP Group Hierarchy plugin the BP Global Search is able to work on group pages. By work I mean it shows groups in it’s results. When I re-enable the BP Group Hierarchy it goes back to only showing member results but no group results.
I disabled all other BuddyPress plugins except these two so there’s got to be conflict with the Group Heirarchy loop and this plugin.
Thanks Sylvaen for the patch. I had the same issue.
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] getimagesize warningsOk I upgraded to 1.3.4 and it works. However when I activated it the plugin it gave this error at the top of the plugins dashboard:
The plugin generated 217 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
Forum: Plugins
In reply to: [Open Graph and Twitter Card Tags] getimagesize warningsSorry but I’m having the same error even after updating to 1.3.3 and attempting to use your file. We use flickr images on our blog and it’s trying to find them locally. I’ve deactivated the plugin for now. Here is an example warning:
Warning: getimagesize(/home/username/public_html/http://farm6.staticflickr.com/5489/11224964104_df2698c696_z.jpg): failed to open stream: No such file or directory in /home/username/public_html/wp-content/plugins/wonderm00ns-simple-facebook-open-graph-tags/wonderm00n-open-graph.php on line 477
Note: I made the username of the filepath generic on purpose.
Forum: Plugins
In reply to: [Meet My Team] Team member editor converting some characters to HTML entitiesFound the fix. Basically this plugin is using an outdated version of the Custom Metaboxes and Fields for WordPress library here:
https://github.com/WebDevStudios/Custom-Metaboxes-and-Fields-for-WordPress– Simply download the .zip file from Github
– Extract/unzip the folder
– Then overwrite all the files in the this folder:
plugins/meet-my-team/admin/includes/Custom-Metaboxes-and-FieldsThat should fix it.
Forum: Plugins
In reply to: [Max Mega Menu] CSS is blocked – Google WMT issueThanks Tom that helps. I look forward to having the option you talk about.
Overall this is a great plugin!
Forum: Plugins
In reply to: [Max Mega Menu] CSS is blocked – Google WMT issueNot to jump on the band wagon here but using admin-ajax.php to load the CSS in this plugin is a bad idea and should not be used for that purpose. Can you please rewrite the plugin to write the CSS to a static file that can be loaded on the site. This is making too many unnecessary call to the DB and is causing performance issues on high traffic sites we manage.
Forum: Plugins
In reply to: [Front End Users] $User->Is_Logged_In() not workingOk it looks like none of the tags work. They all say: Please log in to access this content.
I used the following tags on the page:
[restricted] Can you see me![/restricted][user-search]
[user-list]
[edit-profile]
Forum: Plugins
In reply to: [Front End Users] $User->Is_Logged_In() not workingSame here. When I add [edit-profile] to a page and then visit it while logged in it says: “You must be logged in to access this page.”
Forum: Plugins
In reply to: [Contact Listing for WP Job Manager] Error when activating pluginSame problem here. And I’m using the Jobify theme.
Forum: Plugins
In reply to: [BuddyPress Like] More and more bugsThanks Danny that that worked for me!
Forum: Fixing WordPress
In reply to: update_flash_player.exe is trying to downloadWe’re having users report the same thing happen on one of our client’s sites. The site has lots of traffic and has been running for years with no issue like this. All plugins & WordPress are up to date. I’ve yet to recreate the issue myself on my Mac.
Forum: Plugins
In reply to: [Custom Post Type Maker] Overwrites other post type rewrite rulesI was having the same issue but I think I got it sorted out.
I commented out these lines in the plugin:
// flush permalink structure
global $wp_rewrite;
$wp_rewrite->flush_rules();Then I deactivate & reactivated the plugin and then I saved the permalinks.
Now both this plugin and my other plugins which have their own custom post type seem to work.
one other fix I made b/c the “Blended” dropdown search item wasn’t working for me.
Open file: /wp-content/plugins/amazon-reloaded-for-wordpress/views/meta-box.php
Change line 16 to the following:
<option selected=”selected” value=”All”>All</option>I was able to fix the credentials bug and now everything works for me.
Open file: /wp-content/plugins/amazon-reloaded-for-wordpress/amazon-reloaded-for-wordpress.php
Change line 268 to the following:
return 'http://webservices.amazon.'.$settings['amazon-locale'].'/onca/xml?Service=AWSECommerceService&AWSAccessKeyId='.$settings['amazon-api-key'].'&Operation=BrowseNodeLookup&BrowseNodeId=1000&AssociateTag='.$settings['amazon-associates-id'];Enjoy.