smallwebsolutions
Forum Replies Created
-
In the meantime, if you can FTP into your site, just add “-off” or some other name change to the wp-rss-aggregator folder (in wp-content/plugins/) and your site will be accessible again until you can get the PHP update.
Looks like an include file is missing in the release: roles-capabilities.php.
BTW, you can revert to v3.2 by downloading the zip file here, if you want to use this plugin until the author fixes his release:
https://www.ads-software.com/plugins/wp-rss-aggregator/developers/Forum: Plugins
In reply to: [Analyticator] Newest update broken?I am getting the same error. Might be prudent to turn off the plugin at this time. The latest update (which seems to be broken) was made for a security fix:
6.4.2 – Fixes potential XSS security issue in admin – RECOMMENDED UPDATE.
Forum: Plugins
In reply to: [Search Everything] [Plugin: Search Everything] Save Settings defectI am having the same issue with 6.9.3. The Highlight Background Color field will not retain any hex settings and returns a value of “No” upon saving.
Would appreciate a fix to this.
Thanks.
In response to your questions, I deactivated Search Everything to see if that would make a difference. Lo and behold, the search results for events then appeared. I reactivated Search Everything to see if that was the issue, and event results continued to appear. (Yay!)
Perhaps deactivation/reactivation did the trick.
In any event, thank you for your attention!
Requested the patched version from Rob (thanks for the quick response) and all seems to be working correctly. Much appreciated!
This is possible with All In One SEO with the following snippet:
<?php if(function_exists('aiosp_meta')) : ?> <?php $description = stripcslashes(get_post_meta($post->ID, '_aioseop_description', true)); ?> <?php if(!empty($description)) : ?> <div class="some-style"> <?php echo $description; ?> </div> <?php endif; ?> <?php endif; ?>
[Please post code snippets between backticks or use the code button.]
Anybody out there have a good enough knowledge of Headspace and PHP to come up with something similar?
Forum: Themes and Templates
In reply to: [Menus] adding the pipe character to wp_nav_menuNever mind, just found it:
https://codex.www.ads-software.com/Function_Reference/wp_nav_menu
Thanks again!
Forum: Themes and Templates
In reply to: [Menus] adding the pipe character to wp_nav_menuDavid,
Many, many thanks. Is there a resource page that lists all of the arguments for wp_nav_menu?
Jackie
Forum: Plugins
In reply to: [The Events Calendar] Datepicker not workingDiscovered this was a permalink issue. I had pretty permalinks deselected on the plugin options because my original permalink structure was not working correctly with the calendar. Turned pretty permalinks back on and changed my permalink structure and all is well.
Forum: Plugins
In reply to: [The Events Calendar] "All Day Event" Bug in WP3.2 [with Solution]Actually found the reason for this error and the fix for anyone still encountering this issue:
https://wordpress.stackexchange.com/questions/22317/the-events-calendar-issues-in-wp-3-2
Worked like a charm for me.
GAH! The monthly fix (line 70) works, but just realized that the yearly fix is returning all items in the category instead of just the items in that particular year. If I figure it out, I’ll post the remedy here.
Found the solution to this issue and am posting the fix here in case anyone else runs into this. The problem was that the permalink rewrite in the WP Category Archives plugin was placing the category before the date, when the category should appear after the date, i.e. https://mysite.com/2010/11/general/page/2.
For yearly archiving, at line 56 change:
$year_month_path = $year . “/00”;
to
$year_month_path = $year . “/”;
For monthly archiving, at line 70 change:
$url .= $category . “/” . $year_month_path . “/”;
to
$url .= $year_month_path . “/” . $category . “/”;
Found the solution to this issue and am posting the fix here in case anyone else runs into this. The problem was that the permalink rewrite in the WP Category Archives plugin was placing the category before the date, when the category should appear after the date, i.e. https://mysite.com/2010/11/general/page/2.
For yearly archiving, at line 56 change:
$year_month_path = $year . “/00”;
to
$year_month_path = $year . “/”;
For monthly archiving, at line 70 change:
$url .= $category . “/” . $year_month_path . “/”;
to
$url .= $year_month_path . “/” . $category . “/”;
I’m not sure, but I think the original poster was asking how to call the data from the plugin database to display on a site page for public view.
Can this be done with any type of shortcode? If not, this would be a great future feature for your plugin, which is awesome, btw. ??