gazapo
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Not sending emailI found what was causing the “error” for me; when my gmail account gets the message (whether it’s direct or forwarded to the gmail account) it gets thrown into spam. So the function is working, but gmail doesn’t like it.
I created a filter in my gmail settings so it never gets marked as spam, and now it always gets to my inbox.
Hope this helps others!
Forum: Plugins
In reply to: [Custom Contact Forms] [Plugin: Custom Contact Forms] Not sending emailI’m getting the same issue. No email being sent despite normal wordpress emails coming through. I also tried smtp through gmail to no avail…
Forum: Fixing WordPress
In reply to: Functions.php not working properly in piggie bank themeif ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Sidebar', 'before_widget' => '<div id="%1$s" class="box-right">', 'after_widget' => '</div>', 'before_title' => '<h4>', 'after_title' => '</h4>', ));There should be a closed } after the parenthesis on line 12.
There should also be an open { on the first line at the end of it. This code below should work. Copy and paste it replacing the same code above.
if ( function_exists('register_sidebar') ) { register_sidebar(array( 'name' => 'Sidebar', 'before_widget' => '<div id="%1$s" class="box-right">', 'after_widget' => '</div>', 'before_title' => '<h4>', 'after_title' => '</h4>', )); }I’m having the same problem, hopefully someone has the answer!
My menu ends up having the same color as the top menu. I have changed all the colors in the css file to white, even tried using transparent background, but for some reason my main menu on the page takes on a new color (just happens to be #cccccc).
I’m using DM Albums version 2.4.8.1 with the theme Oulipo version 1.0.9.2
Forum: Fixing WordPress
In reply to: "No categories" PROBLEM :(Try this:
Edit the header.php file; near the end comment out the line
<?php wp_list_categories('exclude=4,7&title_li='); ?>That should work