Esquivelia
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Enquiry for WooCommerce] WooCommerce – Re-ReorderI would like to know this as well!
Thanks!
Forum: Plugins
In reply to: [Simple Ads Manager] large amount of errorsI’ve tried disabling all other plugins, using the twenty ten theme.
Still cannot create new ad places and the states are not being recorded.
anyone? Thanks.
Forum: Plugins
In reply to: [Simple Ads Manager] large amount of errorsMinimus.. the DB table “wp_sam_stats” does exist.
Any other suggestions?
Thanks! Cory-
Forum: Plugins
In reply to: [Simple Ads Manager] large amount of errorsI also cannot create anything new. Ads places, etc.
I do not have access to the database as of yet. Working on that.
Does this sound like the same issue?
Forum: Fixing WordPress
In reply to: My site does not load in Chrome.Forum: Plugins
In reply to: Querying two custom fields in custom post type..Ok answered my own question.. ??
<?php $args = array( 'post_type' => 'ait-dir-item', 'meta_query' => array( array( 'key' => 'location', 'value' => 'annapolis' ), array( 'key' => 'item_tags', 'value' => 'non-marine' ) ), 'orderby' => 'title', 'order' => 'ASC', 'posts_per_page' => 300 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); the_title('<h3 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h3>'); echo '<div class="entry-content">'; the_content(); echo '</div>'; endwhile; ?>
Forum: Plugins
In reply to: Querying two custom fields in custom post type..anyone?
Forum: Plugins
In reply to: [Advance WP Query Search Filter] post_title meta key?Thanks TC.K. I’ll see what I can come up with.
Thanks again. I may have some more questions. ??
Cory-
Forum: Plugins
In reply to: [Advance WP Query Search Filter] post_title meta key?So how can I sort the search results by post title?
Thanks!
Forum: Plugins
In reply to: [Pronamic Google Maps] Map Displaying Funky…Thanks Remco! Wouldn’t have guessed it was a css issue.
Babar007- Just copy and paste that code into your themes css file.
Forum: Plugins
In reply to: [Pronamic Google Maps] Add details to pin popup for post locationsHey Thanks!
But not sure where to place this. I’m using custom post type.
Do I put this in the theme functions or the template file?
Do I have to modify for custom post type?
Thanks again!
Forum: Plugins
In reply to: [Pronamic Google Maps] Add details to pin popup for post locationsI am also interested in this!!
Forum: Fixing WordPress
In reply to: Reseting Page to Top on PostbackDid you ever find a solution?
Forum: Plugins
In reply to: [Contact Form 7] Additional settings redirect to a page upon submittingahh… additional setting at the bottom of the form settings page!
Forum: Plugins
In reply to: [Contact Form 7] Additional settings redirect to a page upon submittingCan you tell me where this (on_sent_ok: “location = ‘https://www.mywebsite.com/mypage’;”) gets inserted?
Thanks!