csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help activing plugin plsThe folder needs to be in the wp-content/plugins folder not the root of wp-content.
Forum: Fixing WordPress
In reply to: Seeking kind assistanceHave you considered paying for a commercial/premium theme for a relatively small one time fee?
Forum: Hacks
In reply to: How can I make my site a social network?WordPress is designed to be a blogging/content publishing platform, it may not suit your needs in this situation. To be completely honest you aren’t likely to find something pre-build that will completely fulfill your needs. You are talking about a very custom application that would probably need to be build custom from the ground up. Either way, you are talking about a lot of custom development and you might want to consider hiring a developer.
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesHow was the page added to the menu? Is it a custom link? For it to work it has to be added to the menu from the pages list.
Forum: Fixing WordPress
In reply to: How to overwrite default function from child themeYou see that line at the bottom:
apply_filters( 'get_the_archive_title', $title );?Using that hook is the best way to override the functionality. See: http://codex.ww.wp.xz.cn/Plugin_API/Hooks
Forum: Fixing WordPress
In reply to: Custom URL based on plugin variablesDid you plug in your rsvp page id?
I’m not sure what a .wie file is, but this plugin only works with .json files. Are you sure it was an export from this plugin?
Forum: Fixing WordPress
In reply to: Exclude taxonomy by term not work with pagination linkTry:
$args['paged'] = get_query_var( 'paged' ) ?: 1; $args['tax_query'] = array( array( 'taxonomy' => 'category', 'terms' => array('cat', 'dog'), 'field' => 'slug', 'operator' => 'NOT IN', ), ); query_posts($args);Forum: Fixing WordPress
In reply to: Cannot verify website with PinterestAre you sure you were adding the meta tag in the proper place?
If you are confident you are doing it properly, you might want to consider contacting Pinterest support.
Forum: Fixing WordPress
In reply to: Get Taxonomy By URLDoes it have to be from the url?
Forum: Fixing WordPress
In reply to: Exclude taxonomy by term not work with pagination link$args['paged'] = get_query_var( 'paged' ); $args['tax_query'] = array( array( 'taxonomy' => 'category', 'terms' => array('cat', 'dog'), 'field' => 'slug', 'operator' => 'NOT IN', ), ); query_posts($args);Forum: Fixing WordPress
In reply to: The left margin is set 1/3 in from the leftOn the edit screen for each page is there a “Template” field under the attributes section? And if so, do they match?
Forum: Fixing WordPress
In reply to: The left margin is set 1/3 in from the leftI think i might have misunderstood, are you copying html from the editor content or from template parts?
If you are copying from editor content, is it possible that the original page you copied from is a “page” type and you are posting to a “post” type, or vice versa?
Forum: Fixing WordPress
In reply to: Exclude taxonomy by term not work with pagination linkYou need to pass the ‘paged’ parameter into your query args.
Forum: Fixing WordPress
In reply to: animated gif file is not movingIt’s working for me in chrome, safari, and firefox.