meredith1986
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Widget] Please enter email address error messageThank you very much for the quick response!
That seemed to have worked, but now I get a different error. It says “Interest category does not exist.” My list name has a hyphen in it, so maybe that’s a part of the problem?
Should I start a new thread for this different problem?
Forum: Plugins
In reply to: [Constant Contact Widget] Please enter email address error messageIn the footer: new.glowgwinnett.com
I really appreciate your help, David! I’ll figure it out! ??
I’ve now encountered a new problem–an error message that says, “Settings test result: Failure: we did not successfully login with those credentials.” I know they are correct. ??
Nevermind, I just had to search for it. The plugin appears to be working now! ??
I actually can’t even see the cgi-bin directory from my FTP program (Fetch). I can see my .htaccess file though. I’m using Network Solution’s online FileManager to access the cgi-bin directory. I’m not sure how to find the .php directory if it’s hidden??
I just looked in my cgi-bin directory, but I do not have the .php directory or php.coalesced.ini file that were referenced by user NoTearsWeb. Inside of my cgi-bin directory, all I see is this:
fileman.cgi
global.dat
php.dat
php.dat.savI just emailed you!
I just tried activating TwentyTwelve and that didn’t work either.
I’m using Chrome on a Mac, but I also tried Firefox.
I just deactivated all of my plugins and it didn’t make a difference.
I opened the JavaScript Console and saw this error, but only after clicking “Backup Now”:
Uncaught TypeError: Object [object Object] has no method ‘dialog’ options-general.php?page=updraftplus:225
onclick options-general.php?page=updraftplus:225Correct, nothing at all. No indication that I have even clicked a button.
Lightbox isn’t working for me either. This is what it looks like when I click on a thumbnail: https://postimg.org/image/v2h6a40zv/
There is no way to uncheck the radio box for FancyBox 2. I don’t want to use Fancy Box 2, I want to use Colorbox! This is what my settings look like: https://postimg.org/image/4lx6fxs29/
HELP!
Why would I use .first and .last instead of .odd and .even? Because I only have 3 posts total?
Forum: Hacks
In reply to: Add class based on even/oddThanks so much, that worked perfectly! ??
Forum: Hacks
In reply to: Add class based on even/oddI am trying to accomplish the same thing with my custom posts, but can’t seem to translate those answers into my code. I’d like the odd-numbered posts to be styled differently than the even-numbered posts. Here’s my code:
<?php $args = array( 'post_type' => 'book', 'posts_per_page' => 3 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); echo '<div class="entry-content">'; the_title(); the_content(); echo '</div>'; endwhile; ?>
I guess I need to add an additional class (.odd or .even) to my div. Right?
TIA!