Forum Replies Created
-
Mod
It’s possible she edited a theme file. If so, installing a fresh copy of the theme via FTP should get rid of that.
Mod
In reply to: Eliminating a Hidden Page "Attribution" carried over from Another Theme
June 29, 2016 at 2:03 am #46166That is just a WordPress page. You can try deleting it from the “Pages” pane of your WordPress backend. If you are using a custom menu, you will need to edit the menu to delete the link to that page.
I’ve redacted your email address. All suppport is through the forum; posting your email address here will attract spam (eventually!).
Mod
From the wordpress.org forums:
You need to start working your way through these resources:
- https://codex.wordpress.org/FAQ_My_site_was_hacked
- https://wordpress.org/support/topic/268083#post-1065779
- http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
- http://ottopress.com/2009/hacked-wordpress-backdoors/
Additional Resources:
Mod
If your child theme doesn’t have a functions.php file, you’ll need to create one. Fortunately, the child theme you got from Prasanna does have one.
Your host may offer FTP through cPanel. If not, you can edit the file directly, through WordPress. (This can be dangerous, however.)
1. Go to Appearance >> Editor in your Dashboard. Make sure that your Graphene Child theme is selected in the upper right hand corner drop-down.
2. Click on “Theme Functions” in the list on the right.
3. Copy the above code, and paste it where it says “// put your code here”
4. Go ahead and delete the closing php tag (
?>) just to be on the safe side.5. Click
“Save”“Update File”. Visit your blog to see your changes take effect. Make sure you refresh your browser cache (F5) first.6. Have a cup of tea and a cookie.
7. Learn about FTP.
Mod
Sorry for the delay.
Add this to your child theme’s functions.php file:
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Category Archive: <span>%s</span>' => '<span>%s</span>',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );Upload that via FTP to your child theme folder.
That should change “Category Archive: Articles” to just “Articles”.
Mod
Thanks. The first thing you need to do is create a child theme. Do you know how to do that?
If not, Prasanna has one you can download here:
Mod
Quote:I know you guys have touched on the subject in previous forum threadsIf you can post a link to some of those threads, we can walk you through it. It’s not difficult, but it is a multi-step process.
Mod
Add this to Graphene’s custom css feature:
Quote:.post-title, .post-title a, .post-title a:visited {border: none;
}
Mod
Mod
Glad to have helped. Marking as resolved.
