psperkins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsSorry caught my mistake too late to edit – corrected query
$terms = get_terms('property_location'); foreach($terms as $term): $args = array( 'post_type' => 'property', 'tax_query' => array( array( 'taxonomy' => 'property_location', 'field' => 'slug', 'terms' => $term->slug, ),), 'meta_query' => array( array( 'key' => 'property_type', 'value' => 'floorplan', ), ), ); $myloop = new WP_Query($args); if($myloop->have_posts()):while($myloop->have_posts());$myloop->the_post(); //do your loop markup endwhile; endif; endforeach;
* code is not tested, sorry if it needs adjustment
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsor you may want to run the query once for every term in a foreach loop:
$terms = get_terms('property_location'); foreach($terms as $term): $args = array( 'post_type' => 'property', 'tax_query' => array( array( 'taxonomy' => 'property_location', 'field' => 'slug', 'terms' => $term, )), 'meta_query' => array( array( 'key' => 'property_type', 'value' => 'floorplan', )), ); $myloop = new WP_Query($args); if($myloop->have_posts()):while($myloop->have_posts());$myloop->the_post(); //do your loop markup endwhile; endif; endforeach;
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsAh I see, I misunderstood.
You use WP_Query and pass it a tax_query and meta_query like so:
first define an array of your tax terms using get_terms:
https://codex.www.ads-software.com/Function_Reference/get_terms
Then your query would be something like:$args = array( 'post_type' => 'property', 'tax_query' => array( array( 'taxonomy' => 'property_location', 'field' => 'slug', 'terms' => $arrayofterms, // this is an array you must define )), 'meta_query' => array( array( 'key' => 'property_type', 'value' => 'floorplan', )), ); $myloop = new WP_Query($args); if($myloop->have_posts()):while($myloop->have_posts());$myloop->the_post();
and finish your loop.
Forum: Fixing WordPress
In reply to: Permalinks have a /index.php/ in the paththose look out of order.missing stuff slightly and may be causing your issue.
Replace with this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Permalinks have a /index.php/ in the pathDo you have an htaccess file in the root directory of your installation?
https://codex.www.ads-software.com/htaccessForum: Fixing WordPress
In reply to: Update gone horribly wrongDid you save the old files? It appears as though your wp-config file that holds the database connection details has gotten over written perhaps? If you have the old wp-config file just uploading that might fix the problem.
Forum: Fixing WordPress
In reply to: special characters corrupted when saving in WP admin panelIn wp-config.php comment out the line
define('DB_CHARSET', 'utf8');
Forum: Fixing WordPress
In reply to: Post width into sidebarLine 2796 of your theme’s style.css file add
padding-right:40px;
to the.art-content-layout .art-content{}
declarationYou can either do this in the appearance editor (not recommended) or via FTP (the best way)
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsI see, you are using a paid theme “advertica” which loads the jquery ‘isotope” filtering plugin. Look familiar? https://isotope.metafizzy.co/
In the case that you were building this from scratch I could help you but I think this case it’s best to contact support for the makers of the advertica theme. Without knowing that particular paid theme intimately I cannot tell you how that particular functionality was implemented.
Forum: Fixing WordPress
In reply to: China & Google… help!!Not loading especially slow for me in Idaho.
You might run a test at pingdom.com and see if there is a particular object that is loading slow.
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsSo out of that pool of posts you want to sort the results by location using isotope? If so, you need to get the location value and add it to the (list of) class(es) for each item in the loop then set the data-filter attribute of the filter to target items with that value.
Something like so:
$('#filters').on( 'click', 'a.filter', function(evt) { evt.preventDefault(); var filterValue = $(this).attr('data-filter'); $container.isotope({ filter: filterValue }); });
P.S. you should probably be using WP_Query($args) instead of query_posts($args)
Is this running on a yahoo business hosting account by any chance?
Forum: Fixing WordPress
In reply to: How can I get a taxonomy by custom post type fieldsSo when you click a location filter in the list, you want it to return only “properties” posts that have a custom field named “property_type” with a value of “floorplan” ?
Apologies, just making sure I understand the question.
Forum: Fixing WordPress
In reply to: Question re. changing admin usernameI know it’s scary, but yes you should be safe.
Deleting users does not delete posts form the database.The worst thing that could happen would be that the posts would not get attributed to an author and need to be reassigned. But that is doubtful as long as you attribute them to your new admin.
Forum: Fixing WordPress
In reply to: How to Find Broken Links?There is also https://home.snafu.de/tilman/xenulink.html if you are on a PC, not sure they have a version for mac. Great tool.