alxvallejo
Forum Replies Created
-
Update: Custom taxonomies are supported, just be sure to include more than one term in the index.
Update: I quickly realized that the faceted search does work properly. Only question is whether custom taxonomies will be supported???
Forum: Fixing WordPress
In reply to: Dynamic "filtering" of resultsI’m looking for the same solution. Let me know if you came up with one!
Hm, I downloaded the script, made the new plugin, replaced all instances of *cpt* with my custom post type, and instead, in the admin menu, i get a Search Bar titled ‘Pages Search’
Forum: Plugins
In reply to: [WP-Filters] [Plugin: WP-Filters] How do I use this?Let’s say I wanted to add the filters to my index.php on my Twenty Eleven theme:
<div id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <?php twentyeleven_content_nav( 'nav-above' ); ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; ?>
Or am I looking at the wrong file?
I am having the same problem. I have a taxonomy with a slug “subject-one” and then a page with a slug “subject-one”.
Apparently this is a no-no, which doesn’t make much sense because I definitely need a taxonomy structure that mimics whatever page I give it. Having to create new slugs just to get around this issue is NOT ideal.
Forum: Plugins
In reply to: [Multipost MU] [Plugin: Multipost MU] Bulk Post to Multiple SitesI agree 100%. Anyone know how to edit the pages menu to add the Multipost options panel?
Forum: Networking WordPress
In reply to: How does MultiSite work?When you say “virtual”, do you basically mean that both sites exist on one WPDB and that the only separation is a simply website ID # that identifies which site each post points to? etc?
I provided the specific errors.
Correct me if I’m wrong but when you run the backup, the .zip file should be created. This does not occur when I run the backup; as I only see a folder with all the files (uncompressed). So this is where things go wrong. When I manually compress the files, I then place them in my new directory, add the restore.php, and run restore.php, filling in the info and clicking restore. Then I get the errors above.Would this have anything to do with me installing the backup on a localhost?
Thanks for the quick response @xcloner.
I know this is old, but what’s the reason in laymans’s terms, why the backup did not get compiled in a .zip file? I’m having the same issue and I’m not quite sure if I’m actually backing up my site or not.
Is size a factor?
Hey Alex, Not saying I’m an expert in the Walker Class area but just wondering why you chose to override the end_el function as opposed to the start_el. I had some similar requirements and I could change the $output HTML with start_el.
You are probably past this problem so just wanted to say hi.Forum: Themes and Templates
In reply to: Custom Walker Functions/Classes for wp_nav_menu won't workHey just wondering if you figured this out. I’m trying to transfer my Walker class between my wp_list_pages (which works OK) and the wp_nav_menu (where I get similar errors).
Forum: Fixing WordPress
In reply to: Comment excerptsBe sure to try both methods from above as only the get_comment_excerpt method worked on my script.
Forum: Fixing WordPress
In reply to: sql query helpJust curious, were you placing this inside a function? I’m fairly new at plugin development and I’m trying to figure out if I’m inserting variables correctly.
Forum: Fixing WordPress
In reply to: sql query helpProbably too late for this one but have you tried WHERE vid = ‘$wordtubeId'”));?