cgrray
Forum Replies Created
-
Forum: Plugins
In reply to: [BruteProtect] Illegal offset errorThanks Jeremy. I appreciate the information.
Forum: Plugins
In reply to: [Participants Database] Upload PDF or large imageNice update. Thanks for that.
BTW on this page: https://xnau.com/work-2/wordpress-plugins/participants-database/using-the-participants-database-plugin/
the anchor tag for Image and File Uploads isn’t hooked up. A very small thing but I thought you’d like to know.
Tnaks again.Forum: Plugins
In reply to: [Participants Database] Upload PDF or large imageCan you say when the next release will be? I’m deciding whether to add your hack or wait for the release.
Thanks.Forum: Plugins
In reply to: [Participants Database] Upload PDF or large imageIf I edit the datatype will that change after the plugin gets updated?
Forum: Plugins
In reply to: [Participants Database] Upload PDF or large imageOK great. Thanks. One other question; is there a limit to how many characters can be stored in a textarea?
Forum: Plugins
In reply to: [Participants Database] Upload PDF or large imageI see there is an upload document field in the edit screen but when I tried to upload a PDF it says it only accepts image formats.
Forum: Plugins
In reply to: [Contact Form DB] Extra fields added when data is submittedI guess it doesn’t work with FSCF. Thanks for the update. That will help.
Forum: Plugins
In reply to: [Contact Form DB] Extra fields added when data is submittedThanks for responding. Looking ast this part of your response; “If you want to rename a field/column, then you must rename it in the FSCF form definition for future entries, and change the column name in the editor for already saved entries.” All the fields I’m referring to are Extra Fields. I don’t see any place to rename them in the FSCF form definition.
Forum: Plugins
In reply to: [Contact Form DB] Extra fields added when data is submittedThe form works fine with just Contact Form DB but when I use DB Extension Edit to edit the field headers the problem above occurs and I paid $50 for the DB Extension Edit plugin. ??
Forum: Fixing WordPress
In reply to: Custom horizontal menus displayed on specific pagesThat’s exactly what I want but I’m afraid I don’t know how to do what you suggest. Is there any chance you could give me examples of what you did to which files?
I only need one additional menu.
Thanks.Forum: Fixing WordPress
In reply to: Custom horizontal menus displayed on specific pagesDid you ever find a solution to this?
Forum: Themes and Templates
In reply to: How to add a fourth footer widget area to twenty elevenThanks for sticking with me alchymyth. That did it and I’ve learned some too.
Forum: Themes and Templates
In reply to: How to add a fourth footer widget area to twenty elevenI found this code in the twentyeleven function.php file:
* Count the number of footer sidebars to enable dynamic classes for the footer */ function twentyeleven_footer_sidebar_class() { $count = 0; if ( is_active_sidebar( 'sidebar-3' ) ) $count++; if ( is_active_sidebar( 'sidebar-4' ) ) $count++; if ( is_active_sidebar( 'sidebar-5' ) ) $count++;*/ $class = ''; switch ( $count ) { case '1': $class = 'one'; break; case '2': $class = 'two'; break; case '3': $class = 'three'; break; } if ( $class ) echo 'class="' . $class . '"'; }
I tried adding it to the child functions file with these additions:
if ( is_active_sidebar( 'sidebar-6' ) ) $count++;*/ case '4': $class = 'four'; break;
but then I get this error: (This is on our test site)
Fatal error: Cannot redeclare twentyeleven_footer_sidebar_class() (previously declared in D:\wamp\www\YogaSoleil\wp-content\themes\YS\functions.php:75) in D:\wamp\www\YogaSoleil\wp-content\themes\twentyeleven\functions.php on line 483[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]
Forum: Themes and Templates
In reply to: How to add a fourth footer widget area to twenty elevenIf put the changes on our live site. I looked at the page with firebug and the class for the footer shows up as <div id=”supplementary” class=”three”> but the fourth widget area shows up as a sub div.
I’m feeling stupid about not being able to figure this out.
Here’s the url: http:yogasoleil.com.