jacaldwell
Forum Replies Created
-
Still awaiting a reply either here or via email. In our email thread, after waiting three days, have diagnosed the problem as possibly “the data might not be in the correct format to be parsed out as HTML. It looks like it’s being treated as a string in the inspector screenshot. If this is how the data is actually stored, which, from the? screenshot of the data in the wp_wcusage_activity table, it appears to be that might be the reason the commissions are showing as $0.00.” If you don’t have time to fix it we will if you can provide a little direction.
Sent screenshots via email on reply, with an update today. Eagerly awaiting response.
Thanks. This isn’t going to work for me.
Really all I’m looking to do is add the giveaway function. I’m fine duplicating what I already have so that I can use the HTML form code function if the form code is displayed in my popup.
This doesn’t look like it does that. This looks like instead of clicking a button to submit a form the user is clicking a button to open a form – unless maybe I want to use an ESP other than the one I already own…
I can’t use an existing Contact Form 7, but I can use the html option to paste the form code ??
Nevermind; I see – doesn’t work together so use html form code. No biggie; thought for a moment I could add it to current.
isn’t this your shortcode? [rafflepress id=”2″]
I actually have my own ESP that connects to WP via WP_SMTP and in this instance Contact Form 7, that we display with Popup Maker.
On a “page” we’re basically looking at
[contact7-shortcode] >> Some Text <<
Confirming adding giveaways would look like
[contact7-shortcode][raffle-shortcode] >> Some Text <<
Does it matter if the code inserts before or after the form code?
Sorry if I’m being obtuse.
Thanks for the quick reply. It looks like this will add to an existing form; is that correct?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] remove events on home pagenevermind…
Forum: Hacks
In reply to: Default Email Message TextTHANK YOU!
Forum: Hacks
In reply to: Default Email Message TextThanks, but for the life of me I can’t seem to find the text…
What I’m looking for is the default “Notice of Password Change” message.
The first line of the text for that message is, “This notice confirms that your password was changed on [blah blah blah].”
I just want to change it to say, “This notice confirms that your password was changed.”
And I’d also like to change, “Regards” and remove the “All at” portion of the signature.
I can’t believe that finding these little snippets of text can be so difficult…
TIA for any help!
Forum: Plugins
In reply to: [Timeline Twitter Feed] spacing between tweetsseems my problem was between the keyboard and chair…. CSS fixed the spacing issue….
Forum: Themes and Templates
In reply to: [Brunelleschi] Features Image w/ Excerptthis is probably a really dirty way of doing things, but here’s what I did….
loop-page.php:
from:
foreach( $mypages as $page ) {
$content = $page->post_excerpt;
if ( ! $content ) // Check for empty page
continue;$content = apply_filters( ‘the_content’, $content );
?>
<h4>ID ); ?>”><?php echo $page->post_title; ?></h4><div class=”entry”><?php echo $content; ?></div>
To:
foreach( $mypages as $page ) {
$content = $page->post_excerpt;
if ( ! $content ) // Check for empty page
continue;$content = apply_filters( ‘the_content’, $content );
?>
<h4>ID ); ?>”><?php echo $page->post_title; ?></h4>
<div class=”entry”>
ID ); ?>” border=”0″><?php echo get_the_post_thumbnail( $page->ID ); ?>
<?php echo $content; ?>
</div><div style=”visibility: hidden”><hr></div>The hidden HR is because I couldn’t make the lines break between child page titles/images.
Then in the css added:
img.wp-post-image,
img.attachment-full,
img.attachment-large,
img.attachment-medium,
img.attachment-thumbnail {
display: block;
width: auto;
height: 150px;
float: left;
vertical-align: top;
padding-right: 20px;
}
#content-blog img.wp-post-image {
margin: 0 auto;
}
.entry {clear:both;}Forum: Plugins
In reply to: [WP-Members Membership Plugin] Wp-Members Not blocking pagesha! this had me stumped for about an hour….