sgate1
Forum Replies Created
-
Any ideas on how to fix this?
So If I create a user with the role editor I can’t see the modal option on the admin bar at all.
Forum: Plugins
In reply to: [Contact Form 7] ios image upload issueAny ideas as to why this isn’t working.
Forum: Plugins
In reply to: [Contact Form 7] ios image upload issueSo what I did was remove the file restriction and it worked. With the plugins enabled. I also did a fresh install of WordPress and tested the form with the file restrictions and it didn’t work. Here is the file upload code.
<p>Picture Attachment<br /> <p>File Types: gif|png|jpg|pdf</p> [file file-808 limit:5mb filetypes:gif|png|jpg|pdf]Forum: Plugins
In reply to: [Perfect Quotes] How can Perfect Quotes be added to post and page templates?I am not sure if you figured it out yet but it would be like this. You need to look into the database and in the table wp_term_taxonomy the the termID could be different then 51. Once you have that then you replace 51 with your value. This just grabs the quotes but doesn’t loop and output them.
$termID = 51; // run query $query=query_posts(array( 'post_type' => 'perfect-quotes', 'showposts' => -1, 'tax_query' => array( array( 'taxonomy' => 'perfect_quotes_category', 'terms' => $termID, 'field' => 'term_id', ) ), 'orderby' => 'title', 'order' => 'ASC' ) );Forum: Themes and Templates
In reply to: admin-ajax.php not working after updateStill trying to figure this out. Its probably something I am missing since the upgrade.