Ellis Benus
Forum Replies Created
-
I just found the following article regarding WooThemes.
http://forum.faircode.eu/forums/topic/existing-themes-shortcodes-in-rss/
Someone answered there, “If you enable the option ‘Execute shortcodes in RSS feeds’, the filter the_content_feed is used to process shortcodes too, but this only works if the RSS feed is being filtered by this filter. I don’t know if WooThemes calls this filter. Maybe you can ask that.”
I will be contacting my theme company about this now. Maybe this will help someone else.
I was just told by a theme author it’s not possible to show shortcode content in the RSS feed.
I’m also looking for a solution to this problem.
My thought was to have logic which said (pseudo code):
if the content being shown is an RSS Feed
use this (ex: <img> vs. [img shortcode])
if the content is a web page
use this[ Signature moderated. Could you please stop with the signature? ]
Hey bud, did you ever get an answer to your question?
You could log into your PHPmyAdmin control panel and find the tables Network Publisher uses and manually update the database entry with your domain. If it’s not in the database, then it might be in a static file (but I doubt it).
Checking the static file would be the easiest, just download the plugin folder (via FTP) to your local computer and search INSIDE the files for the old domain name.
Otherwise, it’s got to be in the database (probably is).
[sig moderated as per the Forum Rules]
Forum: Plugins
In reply to: [Social Media Widget] Custom IconsForum: Fixing WordPress
In reply to: Hide Meta Boxes on Custom Post TypeYou sir are a unique and beautiful butterfly and I wish you happiness and rainbows henceforth!
THANKS!
[sig moderated as per the Forum Rules]
Forum: Fixing WordPress
In reply to: Custom Taxonomy Post Count IncorrectIs anyone experiencing an issue where a taxonomy is registered to multiple custom post types, and the count is including the numbers from all the custom post types?
For instance, I have 1 taxonomy Books tied to two Custom Post Types, Stuff and Crap.
If you look at the taxonomy list under either of the custom post types, it shows the same number, the sum of both custom posts that are in the one taxonomy…
Thoughts?
Forum: Themes and Templates
In reply to: Children of Custom Post TypeA small win, I finally got the taxonomy to show up using ‘taxonomies’ => array( ‘item_category’, ) inside the register_post_type() function…
HOWEVER, it completely ignores all the $labels I set and only shows as “Post Tags” …?!
HELP!
Forum: Fixing WordPress
In reply to: register_post_type not showing TagsI’m trying to do this exact same thing. And I’m firing it on init inside a function…
Any reason why neither defining an array of taxonomies inside $args for register_post_type OR register_taxonomy_for_object_type will work?
Forum: Themes and Templates
In reply to: Children of Custom Post TypeI found something very interesting under register_post_type (http://codex.wordpress.org/Function_Reference/register_post_type), the argument ‘taxonomies’.
taxonomies: (array) (optional)
An array of registered taxonomies like category or post_tag that will be used with this post type. Taxonomies still need to be registered with register_taxonomy().So I used register_taxonomy() with no object_type set (Default: None)
(http://codex.wordpress.org/Function_Reference/register_taxonomy)Then I used the register_post_type specifying the taxonomies per the above directions… and they don’t show up…
Forum: Themes and Templates
In reply to: Children of Custom Post TypeI’m very aware of the hierarchical setting in CPT’s (http://codex.wordpress.org/Function_Reference/register_post_type)
However, I need a way to only show certain taxonomies of the Parent CPT on the Children’s pages (inside wp-admin, not visitor side presentation).
Forum: Fixing WordPress
In reply to: Weird Search Results URL — X & Y Coordinates!Thank you for this thread!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Flash uploader not working after patchWhy on earth does no one have an answer for this?!
I find this error all over the web and no-one can give answers…
Very frustrating…
Forum: Plugins
In reply to: [Plugin: WP-Polls] Negative valueThis still isn’t fixed. I’ve got 2.50 and it just did it to us again. Normally it only happens on polls with more than 4 possible selections.
Forum: Plugins
In reply to: Drop Down Menu Plugin for 2.7Same question as visionvek…
A month, and no one has answered this question?
Forum: Fixing WordPress
In reply to: Admin Interface Reverse Chronological OrderI actually figured this out shortly after posting…
Go to: wp-admin/includes/post.php
Scroll down to line number 513
You are looking for a block like this:
if ( 'pending' === $q['post_status'] ) { $order = 'ASC'; $orderby = 'modified'; } elseif ( 'draft' === $q['post_status'] ) { $order = 'DESC'; $orderby = 'modified'; } else { $order = 'DESC'; $orderby = 'date'; }In the final
else {}Change:$order = 'ASC';to:
$order = 'DESC';That’s it! When you are done the block should look like this:
if ( 'pending' === $q['post_status'] ) { $order = 'ASC'; $orderby = 'modified'; } elseif ( 'draft' === $q['post_status'] ) { $order = 'DESC'; $orderby = 'modified'; } else { $order = 'DESC'; /* used to be ASC */ $orderby = 'date'; }