Frumph
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Undefined Variable/Index after installing WP 3.5Warning Messages ‘displaying’ are set in the php.ini file & inside the wp-config.php in the define for WP_DEBUG (should be false there) ..
Inside the php.ini is display_errors should be set to 0
ALthough you could add this to the wp-config.php file and do it there as well, right under the define for WP_DEBUG
@ini_set('display_errors', 0);Forum: Fixing WordPress
In reply to: New custom widget areaAre you using a static page as your front page in the settings -> reading?
Forum: Fixing WordPress
In reply to: Troubles after update to 3.5Open up the plugins/wp-compare-tables/wp-compare-tables-frontend.php file via FTP and search for this:
$value = $wpdb->get_var($wpdb->prepare(" SELECT val_value FROM ".$wpdb->prefix.WP_COMPARE_TABLES_TABLE_VALUES." WHERE val_table = '".$id."' AND val_col = '".$column->col_id."' AND val_row = '".$row->row_id."' "));then change it to this:
$value = $wpdb->get_var($wpdb->prepare(" SELECT val_value FROM %s WHERE val_table = '%s' AND val_col = '%d' AND val_row = '%d' ",$wpdb->prefix.WP_COMPARE_TABLES_TABLE_VALUES,$id,$column->col_id,$row->row_id));and see what happens 😉 apologize for the bad look of coding there, that’s how it is in his source and I just copy pasted ;/
Forum: Fixing WordPress
In reply to: use wp functions outside wordpress and in a different domain nameFunction references are hierarchical top down from the installation of WordPress, loading from ‘above’ and then to the side of WP should not be possible.
How you got it to work in ../Forum/ is interesting. Maybe the hooks for get_ URI require the domain be be the same?
Forum: Fixing WordPress
In reply to: BIG PROBLEM – NOWHERE TO BE FIX!First thing is to use the forums for this pay-for theme: https://www.elegantthemes.com/forum/ Support for pay for themes is provided by where you purchased the theme.
IF it was a theme on this repo we would be able to help you because we could get the theme and check it out on what possibly could be the problem.
Forum: Fixing WordPress
In reply to: I am getting a warning on one of my pages.. You could just disable the photon portion of Jetpack and use the rest of the Jetpacks functionality.
Forum: Fixing WordPress
In reply to: Troubles after update to 3.5Fastest thing to do is go edit your wp-config.php changing the define for WP_DEBUG to false so that warnings are not showing anymore; or just deactivating that plugin and not use it
/mod/ Is it possible to attach this post to the appropriate forum for the support page to this plugin?
Forum: Fixing WordPress
In reply to: One button across all sites?.. that’s what I made for you originally in that other thread, you just use style=”position: absolute; top: 0; left: 0;” (etc.. inline-CSS) to position it to show at the top of the page
Forum: Fixing WordPress
In reply to: New custom widget area<?php if ( is_home() ) dynamic_sidebar('Top Bar'); ?>.. that’s all.
Forum: Fixing WordPress
In reply to: New custom widget area… remove the <?php endif; ?> part
Forum: Fixing WordPress
In reply to: New custom widget areaif ( is_home() ) dynamic_sidebar('Top Bar');check if it’s the homepage with is_home() you don’t need the function_exists part anymore
Forum: Fixing WordPress
In reply to: Widget LogicMagazine3 is a pay-for theme; support is provided through your place of purchase and not these forums.
Forum: Fixing WordPress
In reply to: get_author_posts_url() not workinggo set your settings -> permalink structure to the top one (no pretty permalink) and see what it returns then
Forum: Fixing WordPress
In reply to: facebook like and shareAs long as it works 😉
Forum: Fixing WordPress
In reply to: facebook like and shareI did solve this.. just toss that code I put in the box above into your functions.php file