AndyShick
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Saving failed: AJAX call failedThanks guys. I did try deactivating all the plugins and reinstalling WP. Still not working. Tobias, I’ll email you the login info.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Saving failed: AJAX call failedHi Tobias,
I’m getting the same error. The table only has 2 rows. How do I go about fixing the PHP syntax error in the wp-admin/admin-ajax.php file?
Here’s the link.
echonebraska.com/shows. There’s another table that I’d like to put on that page. It has 4 entries.Thanks in advance,
AndyFigured out what was the issue, if anyone experiences the same problem: Just trash the 4 pages the plugin creates.
Hey Glenn,
Just got around to working on the site again, and It worked by changing one of the fields. Thanks so much for your help!
In case anyone stumbles across this post and is interested in which fields were changed, you can view the code below.
$ffi['state'] = array( 'label' => apply_filters( 'sm-search-label-state', __( '<strong>Province</strong>: ', 'SimpleMap' ), $post ), 'input' => '<input type="text" id="location_search_state_field" name="location_search_state" value="' . esc_attr( $state_value ) . '" />' ); $ffi['zip'] = array( 'label' => apply_filters( 'sm-search-label-zip', __( '<strong>Postal Code</strong>: ', 'SimpleMap' ), $post ), 'input' => '<input type="text" id="location_search_zip_field" name="location_search_zip" value="' . esc_attr( $zip_value ) . '" />' );
Andy
I’m having the same issue on the site I’m working on. I just noticed this last night. It was working fine up until then, Stylenoir, where is the piece of code located? I don’t have that in my CSS file.
Forum: Fixing WordPress
In reply to: How To Add A Widgetized FooterI figured it out. Thanks. I just had to register each footer individually.
Forum: Fixing WordPress
In reply to: How To Add A Widgetized FooterThanks for the link. I probably should have specified that there is already a right sidebar in the theme I’m using (Codium Extend). I’m trying to add a 3-column footer.
This is what’s in functions.php already for the sidebar.
register_sidebar(array( 'name' => 'SidebarTop', 'description' => 'Top sidebar', 'before_widget' => "\n\t\t\t" . '<li id="%1$s" class="widget %2$s"><div class="widgetblock">', 'after_widget' => "\n\t\t\t</div>\n", 'before_title' => "\n\t\t\t\t". '<div class="widgettitleb"><h3 class="widgettitle">', 'after_title' => "</h3></div>\n" .'' )); register_sidebar(array( 'name' => 'SidebarBottom', 'description' => 'Bottom sidebar', 'before_widget' => "\n\t\t\t" . '<li id="%1$s" class="widget %2$s"><div class="widgetblock">', 'after_widget' => "\n\t\t\t</div>\n", 'before_title' => "\n\t\t\t\t". '<div class="widgettitleb"><h3 class="widgettitle">', 'after_title' => "</h3></div>\n" .'' )); }
Do you how I can just add an additional sidebar for the footer?
Forum: Fixing WordPress
In reply to: Codium Extend CSS – sidebar moves in IEWhoa, thanks for the quick reply! I removed that code and it works perfectly now. You rock, Henri!
Forum: Fixing WordPress
In reply to: Codium Extend CSS – sidebar moves in IENot sure if this the same issue, but the right sidebar and navigation menu keep disappearing when i shorten the browser window. I’m using Firefox, Safari & Chrome to test. I tried the changes that vlangin suggested but have had no luck fixing the issue yet. I’m just confused by the steps that says to add ‘text-align : left; to both #wrapper’ when the first says to switch it to the right.
Love the theme btw! The site i’m working on is https://www.storageatbudget.com. And I appreciate any help you give me. Thanks!