RTDE
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Google fetch is redirecting to japanese site looks like hackI’m having the same issues, seems to be jumping from one site to another, all hosted in the same space.
I have so far removed:
CSS.PHP
SON.PHP
and
tonundrumy.phpfiles from most of my domains, however the index.php keeps getting changed, I noticed also that the .htaccess file also has an amended date on it, but no changes have been made, before it was just a mapss.xml that was dropped into my directories, but now I’m seeing the injection into index.php with the below code:
[code moderated. Do not post hacking code in thee forums.]
followed by encrypted information.
any help is greatly appreciated.
by the way, who is your host?
Forum: Fixing WordPress
In reply to: Top dropdown sub-menus do not showlegend! i was cracking up trying to sort this one!!
in my case is searched for: wp_deregister_script(‘jquery’);
and it was located in Theme.php in my theme folder:
Replace:
wp_deregister_script( ‘jquery’ );
wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js”), false, ”);with:
//wp_deregister_script(‘jquery’);
//wp_register_script(‘jquery’, (“http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js”), false, ”);worked like a charm, thanks lads! 🙂
Forum: Fixing WordPress
In reply to: Change Post Time to Get Text if left Blankthere must be something I can do in order to replace strtotime
with an if else function, say if I set the start time to 00:00 then this will output as TBCbelow is an excerpt of the script being used.
$timestamp = strtotime( $match->post_date ); $gmt_offset = get_option( 'gmt_offset' ); $date_format = get_option( 'date_format' ); $time_format = get_option( 'time_format' ); $output .= '<li class="'.( $count % 2 == 0 ? 'even' : 'odd').' '.( $count == $size ? ' last' : '').'"> <div class="kickoff"> <div class="home-logo">' . get_the_post_thumbnail( $home_club, 'crest-medium', array( 'title' => get_the_title( $home_club ) ) ) . '</div> <div class="away-logo">' . get_the_post_thumbnail( $away_club, 'crest-medium', array( 'title' => get_the_title( $away_club ) ) ) . '</div> <a>ID ) . '">' . date( $date_format, $timestamp ) . '</a> <time>' . date( $time_format, $timestamp ) . '</time>hope someone can help, 20 euro paypal transfer if they can help me out 🙂
Hey Guys,
had the same issue but finally got it working by doing the below:
App Domain: yourdomain.com
then when you have that entered, you need to selection the option for Website with Facebook Login: from there, enter your site, URL,
now I came across a few access issues after this, namely the 744 error resolved by this:http://wordpress.org/support/topic/plugin-facebook-page-publish-error-occured-at-line-774?replies=29
only thing is, the actual changes aren’t on the specified lines as quoted, but just search for the code you’re looking to change, and replace. save and hey presto, refresh your page, grant access and save settings. and you’re done.
hope this helps.
RTD