l0rily
Forum Replies Created
-
I’m not sure how clear I was originally.
I am able to click to checkmark the street checkboxes and save the new checked status.
But when I try to “Uncheck” any of the street checkboxes, this change is not saved.It needs to properly save all fields including my custom street checkboxes.
Please help. I think this must be a problem with the update code in MailPoet.
Is there a way that I can intervene to correct the problem (like by adding a code snippet)?Yes, that sounds great. I didn’t realize that if I chose more posts than the period contained it would not grab earlier posts as well. Thanks!
Thank you for your response and suggestions, Nick!
Does this mean that there might be plans to support the carousel functionality in the future?
I’d really like to keep my plugins in the StudioPress family because I trust the Genesis products.
Forum: Plugins
In reply to: [Pixabay Images] "You don't have permission to edit this post"I’m seeing the issue as well. I just took the maintenance update for WP 4.2.3 and afterward Pixabay would not showing any images when I searched. I updated Pixabay to the latest version 2.10 and now I’m getting this error consistently when I try to insert an image through Pixabay. I am able to save other types of changes without problem so the issue appears to be with the plugin.
Forum: Plugins
In reply to: [Genesis Simple Sidebars] Sidebar information not showing on pageThis can be resolved through PHP in your functions.php file by adding some custom sidebar logic. Here’s what I did:
add_action( 'genesis_after_content', 'my_sidebar_logic' ); function my_sidebar_logic() { if( is_author() || is_category() || is_tag() || is_date() || is_home() ) { remove_action( 'genesis_sidebar', 'ss_do_sidebar' ); add_action( 'genesis_sidebar', 'my_do_blog_sidebar' ); } } function my_do_blog_sidebar() { dynamic_sidebar( 'blog-sidebar' ); }
You may need to change the action if your sidebar is in a different position than right after the content, but this is the typical location for the primary sidebar.
You will have to create a sidebar for the blog page using Simple Sidebars and give it the slug ‘blog-sidebar’ or change the slug in the code to match the sidebar you want to use.
If you just want the sidebar to be used on the blog page, take of the logic that checks for the archive pages and just check for is_home(). I wanted the same sidebar on all archive pages as well as the main blog page.
Good luck!Forum: Plugins
In reply to: [Posts By Tag] No widget display after latest update (3.1.1)I just updated to 3.1.2 and am having the same problem. I’m using the Posts By Tag Page Fields on many pages and the widget does not display in the sidebar on any of the pages now. I have just updated to WordPress 3.9 and am using the Graphene theme.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] 404 error after latest updateI know. Sorry for the lack of detail. I only mentioned it because I thought it might be related and that maybe others hadn’t noticed the issue.
I found the solution to the 404 error for the ajax-loader.gif. I simply went into the Events -> Theme Options and re-saved the options. This cleared the error on all my sites.
@chemaz When you mentioned switching to another theme, I thought WordPress theme, not ai1ec theme, so I didn’t event think to try that first.As for the second issue, even though it’s not the correct thread for it, I thought I’d share what I found on that as well. The issue I had was a conflict with the latest NextGen Gallery plugin. I had to revert back to version 1.9.13 of NextGen Gallery to get things working.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] 404 error after latest updateI have this error also. Switching to another theme did not resolve the issue.
https://paintedtree.org/calendar/Also, the buttons at the top of the calendar do not work at all.
@toad75 Thanks for the update!
I’m having the same problem as well. I also have just upgraded to WP 3.6 and NextGen Gallery 2.0.11 and am using the Graphene theme.
I have tried changing multiple settings, but none seem to have any effect on my existing galleries. It appears to me that the JS to run the lightbox is not being run at all. The same goes for loading the default styles for the compact album.
I have been testing in a local environment so unfortunately I can’t provide a link. When I switched to the Twenty Thirteen theme it worked fine so it appears to be some kind of conflict with the theme.
I have exactly the same problem as toad75 above. I just updated to the latest version of NextGen Gallery – 2.0.11.
The problem only seems to occur on the localhost. When I took the update on the server, I didn’t get the error. However, since I do most of my testing on the localhost, I’d really like to see this fixed.
Thanks!
Forum: Plugins
In reply to: [WP Help] Multiple links problemI had this problem as well, but I like the concept of the plugin so much that I spent some time fixing it.
It looks like there are a few problems in the code related to regular expressions primarily. I’ve got it working on my servers but I don’t make any claims that the changes I’m listing will work on all configurations.
For those of you who are programmers, you can try making the following 5 changes to the plugin’s wp-help.php file:1) Remove the following:
public function convert_links_cb( $matches )
2) Replace this function with the following code:
private function convert_links($content) { $content = preg_replace_callback( '/href="[A-z0-9":\/.\-_\?=]*&[amp;]*document=([0-9]+)"/', function($matches) { return 'href="https://wp-help-link/' . $matches[1] . '"'; }, $content); $admin_url = parse_url(admin_url('/')); $content = preg_replace('#(https?)://' . preg_quote($admin_url['host'] . $admin_url['path'], '#') . '#', '', $content); return $content; }
3) Replace this function with the following code:
public function make_links_local_cb( $matches ) { $local_id = $this->local_id_from_slurp_id( absint($matches[1]) ); if ($local_id) { return 'href="' . get_permalink(absint($local_id)) . '"'; } else return $matches[0]; }
4) Replace this function with the following code:
private function make_links_local($content) { $output = preg_replace_callback( '/href="http:\/\/wp-help-link\/([0-9]+)"/', array($this, 'make_links_local_cb'), $content ); return $output; }
5) Change the visibility of this function to public instead of private as follows:
public function local_id_from_slurp_id( $id ) {