Eric
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: jetpack comments issue, form submitting twice?i fixed it. it had to do with loading jquery in my header. make sure its not loading if your signed in as admin.
like this:if (!is_admin()) {
wp_enqueue_script(‘jquery’);
}better yet install the plugin that allows you to use the google libraries jquery.
https://www.ads-software.com/extend/plugins/use-google-libraries/Forum: Plugins
In reply to: critque or like button for image on attachment pagesi found rate, which looks good and lightweight. perhaps ill use that…
unless you know of a better 1Forum: Fixing WordPress
In reply to: jetpack comments issue, form submitting twice?come on.. anyone?
https://baseshamai.com/?p=18#comment-47
try posting and see that ot asks you to reload form or resend form…
even if i change to twentyEleven theme it doesnt work which mena sits not me…i did recently transfer my hosting so maybe somehow it got messed up via wordpress.com still pointing to my old home? i dunno…
its a new blog…no5hing was really transferredForum: Plugins
In reply to: contact form 7 dynamically add feilds if requiredusing art direction plugin i added jquery to the page to toggle areas of the form based on criteria selected
solved my own problem…yay…
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Jetpack 1.5 Carousel & JS Minifyyes my gravatrs wont hover unless js minify is off
Forum: Fixing WordPress
In reply to: contact form 7 and w3 cache problemsanyone have this problem?
same for me
validation only wokrs on message not email or name. it ignores those and gives a successful message if the comment is there.Forum: Fixing WordPress
In reply to: w3 tc cache not emptyingnevermind…. fixed it…. another plguin…
Forum: Fixing WordPress
In reply to: showing html demosgot it. and i can just make a separate folder near the wordpress folder and there won’t be any issues?
unless i make a post with the same name as the basic html page….
Forum: Fixing WordPress
In reply to: showing a gallery of imageswp_query inside the main loop?
this is a separate loop I want above where the posts are all displayed.
I specified a name=portfolioI’ve made separate loops before… Im not sure I understand
Forum: Fixing WordPress
In reply to: showing a gallery of imagesno this is called before the main loop.
i know its working because if I add a tag like the_permalink();
it shows up. but apparently there are no attachments?
i added an image with an anchor going a different image does this not count as an attachment?Forum: Fixing WordPress
In reply to: showing a gallery of imagesi did?
its there in the code aboveForum: Fixing WordPress
In reply to: showing a gallery of imagesI have a page called portfolio and I only want the images in that page
this is what I did. what is wrong?$args=array( 'post_type' => 'page', 'posts_per_page' => 1, 'name'=>'portfolio' ); $portfolio= new wp_query($args); while ($portfolio -> have_posts()): $portfolio->the_post(); $wp_query-> in_the_loop = true;?> <?php foreach ( $portfolio as $attachment ) { echo wp_get_attachment_image( $attachment->ID, false ); } endwhile; ?> <?php wp_reset_query(); ?>
Forum: Fixing WordPress
In reply to: showing a gallery of imagesbut how would i grab at the pictures in the post?
i can’t get it to work with wp_get_attachementsForum: Fixing WordPress
In reply to: showing a gallery of imagesthey looks o big and bloated i was hoping to stick with basic wordpress gallery
and it seems most ofthem only let you point to small medium or large preview.
i don’t want that