dscoggins
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Help changing field heading font colorSame here. Even tried using the Headway theme’s mass font change tool.
Forum: Fixing WordPress
In reply to: Changed homepage name and now no homepageCould this have anything to do with the permalinks?
Forum: Fixing WordPress
In reply to: Changed homepage name and now no homepageForgot to mention. Here is what I have tried so far:
- deleted / recreated home page, (it’s called Home)
- deactivated all pluging
- tried to change themes, but the page fails to load
Stopped trying anything at that point cause I figured it must be beyond themes.
Thanx,
Dan
—Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Can I relocate navigation buttons in ImageBrowser?Figured it out. Under Plugins find/select “Editor”. Locate and edit the file “nextgen-gallery/view/imagebrowser.php” Move the div tag “<div class=”pic”><?php echo $image->href_link ?></div>” from just after “<h3><?php echo $image->alttext ?></h3>” to the bottom of the file just before the last “</div>”. The edited file is below.
<?php /** Template Page for the image browser Follow variables are useable : $image : Contain all about the image $meta : Contain the raw Meta data from the image $exif : Contain the clean up Exif data $iptc : Contain the clean up IPTC data $xmp : Contain the clean up XMP data You can check the content when you insert the tag <?php var_dump($variable) ?> If you would like to show the timestamp of the image ,you can use <?php echo $exif['created_timestamp'] ?> **/ ?> <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($image)) : ?> <div class="ngg-imagebrowser" id="<?php echo $image->anchor ?>"> <h3><?php echo $image->alttext ?></h3> <div class="ngg-imagebrowser-nav"> <div class="back"> <a class="ngg-browser-prev" id="ngg-prev-<?php echo $image->previous_pid ?>" href="<?php echo $image->previous_image_link ?>">◄ <?php _e('Back', 'nggallery') ?></a> </div> <div class="next"> <a class="ngg-browser-next" id="ngg-next-<?php echo $image->next_pid ?>" href="<?php echo $image->next_image_link ?>"><?php _e('Next', 'nggallery') ?> ►</a> </div> <div class="counter"><?php _e('Picture', 'nggallery') ?> <?php echo $image->number ?> <?php _e('of', 'nggallery')?> <?php echo $image->total ?></div> <div class="ngg-imagebrowser-desc"><p><?php echo $image->description ?></p></div> </div> <div class="pic"><?php echo $image->href_link ?></div> </div> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Pages widget not excluding pagesHey esmi, thanx for the reply.
I deactivate all plugins at your recommendation and switched themes, but that did not change the widget’s behavior.
I installed the Flexi Pages widget. Problem resolved.
Forum: Fixing WordPress
In reply to: Pages widget only on PagesJust in case others hit this issue here is mu work around.
I installed the “Flexi Pages” widget from the New Plugins page. It is REALLY simple to config and actually works!
Hope this helps some poor soul with page management! :^)
Forum: Fixing WordPress
In reply to: Pages widget only on PagesI have the same problem on one blog but everything works fine on the other. The version of WordPress, the same version of the theme, the same plugin, the same version plugins.
Can’t find anything that would indicate a reason the page exclude won’t work.
Hope to find a solution fast cause this issue is now holding up deployment.
Thanx!
Forum: Fixing WordPress
In reply to: Recent Video’sCheck out Headway. Its not free, but I have found it to be fairly robust in its capabilities. I have used it for 4 blogs so far and love it.
You can get it here: https://www.headwaythemes.com. I would float this question by them before purchasing though.
No financial, or other type affiliation.
Hope that helps.
Dan
—Forum: Fixing WordPress
In reply to: Contact Form 7I know this is an old thread, but I found out some information that will help others who may land here from a search.
I had the same problem with using tables. It turns out that my problem was caused by the cut and paste process. I wrote the code in gedit, had it all looking real pretty, copied it to the clip board and then into the edit field in the Contact Form 7 plugin page, saved it. The form was about a mile long in the browser! So,in a, (Linix),terminal window using vi I striped all the returns out of the code between <table> and </table>. Copied it into Contact Form 7 and the layout is perfect. Even tried copying the structured HTML code from vi. No joy. The form had a bunch of white space.
Hope this helps.
Dan
—Forum: Plugins
In reply to: [Plugin: Contact Form 7] Checkboxes don’t appear in submitted e-mailIn Contact Form 7 config, there is a “Mail” section on the right side there is a area called “Message Body”. You will need to build the email message with the info you wish to have sent from the form. Something like that:
[your-name]
[street-name]
[city-name], [state-name] [zip]
[your-email]
[phone], [work-phone], [cell-phone]The items in brackets are the tag names used in the form. Text can also be added to the email message on a seperate line of between tags names.
Hope that helps.
Dan
—Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Fields don’t show in mailok – I got it figured out:
in the “Mail” section on the right side there is a area called “Message Body”. You will need to build the email message with the info you wish to have sent from the form. Something like that:
[your-name]
[street-name]
[city-name], [state-name] [zip]
[your-email]
[phone], [work-phone], [cell-phone]The items in brackets are the tag names used in the form. Text can also be added to the email message on a seperate line of between tags names.
Hope that helps.
Dan
—Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Fields don’t show in mailSame here. No text or checkbox info shows up in email. Just the input from the “textarea”.