ultimat1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Spam link in the headerVery true WPyogi. Highly recommend finding another theme that works for your site.
Forum: Hacks
In reply to: Place a logo/icon next to an image in a postHmm. That would be a bit more difficult to code, but could be done. I am not aware of any plugins that do this. I searched Google but to no avail. Wish I could be of more help. :-/
Forum: Fixing WordPress
In reply to: Spam link in the headerOr you can always just reinstall the original theme that you are using (again providing you haven’t made modifications to the theme files that you need). You can get a fresh copy of your theme here: http://www.elegantthemes.com/gallery/serene/
Forum: Fixing WordPress
In reply to: Spam link in the headerHmmm. Considering where it’s displaying (between the logo and menu) I would think it HAS to be in header.php of your theme. In your header.php file, look for this code:
<body <?php body_class(); ?>> <div id="container"> <header id="main-header" class="clearfix"> <h1 id="logo"> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a> </h1> <nav id="top-menu"> <?php wp_nav_menu( array( 'theme_location' => 'primary-menu', 'container' => '', 'fallback_cb' => '', 'menu_class' => 'nav', 'echo' => true, ) ); ?> </nav>Should be around line 24 of the file. Unless you have altered this theme, your code should match what I have above exactly… if it doesn’t, then it’s definitely been altered by a hacker.
Forum: Hacks
In reply to: CCTM html code in textareaSounds like a question for the developer. I peeked at the code for this plugin but it’s just too much to wade through. You can use the contact form here:https://craftsmancoding.com/contact to ask the developer.
Forum: Hacks
In reply to: Set a posts URL to an archive page?Could you provide a link so that I may fully understand what it is that you are trying to accomplish?
Forum: Hacks
In reply to: Place a logo/icon next to an image in a postAre you referring to “featured” images or just images that you insert into the post content?
Forum: Fixing WordPress
In reply to: Spam link in the headerLooks like your theme was hacked. You will need to check the theme files to find the link. I’d imagine it’s probably in the header.php file. I’d also recommend switching themes or having an expert look at the one you’re currently using as it seems to have an exploit somewhere. If you purchased the theme, let the developer know what happened. Unless you are using an old version of WP, in which case I’d update it immediately.
Forum: Plugins
In reply to: [WP Custom Login] Can't figure out how to use the the pluginbm-custom-login/image-templates/login-bkg-tile.psd
Just open that file in photoshop and edit away. Save as jpg or gif and upload to a folder on your server. Enter the img location into the Background Image Url field and check out your new login page. I just used it to create a custom login for a client. Took about 5 min. I painted over the Binary Moon layer and threw the logo up at the top. You may have to play with it a few times to get it positioned properly so that it doesn’t cover the text fields. Set your bg color, font color and hyperlink color and you are good to go.
Hope that helps. I was lost as well for a few minutes until I found the PSD file (I had just installed the plugin via the WP dashboard and hadn’t unzipped and looked at the folder contents) but once I found it it was smooth sailing.
Forum: Plugins
In reply to: [No Right Click Images] [Plugin: No Right Click Images Plugin] Doesn't workCan this be edited to open an error message with copyright info when a user tries to right click? I know it’s stupid but my client wants this on his site for some reason.
Forum: Fixing WordPress
In reply to: Custom Fields Help…Well I figured this out, so I decided to share just in case anyone else has this issue.
Instead of trying to select which keys I wanted to show, I decided to try to focus on the ones I DIDN’T want to show, and specified that like so (just replace “yourkey” with the name of the key that you do not want to show to visitors, all other keys:values will show.) :
[Code moderated as per the Forum Rules. Please use the pastebin]
I don’t know that this is the best way to do it, but it worked for me. Thanks to all who were kind enough to offer help!
Forum: Fixing WordPress
In reply to: Custom Fields Help…That would be perfect but instead of showing the name of the key (i.e. – “Brand”) it shows a numeric value from 0-whatever.
So if the custom field metadata is “Budweiser” it shows “0 => Budweiser”.
I need it to show “Brand => Budweiser”. And so on with any other keys that are specified. Almost there, though. Any idea how to change the number to the actual key name?
Thanks everyone for your help, I do appreciate it!
Forum: Fixing WordPress
In reply to: Custom Fields Help…Is there a way to get the name of the ($key) to come before the meta data dynamically, so that if there is no brand entered into the custom field, it would show nothing at all for that string?
Forum: Fixing WordPress
In reply to: Custom Fields Help…Unfortunately so am I, lol.
Forum: Fixing WordPress
In reply to: Custom Fields Help…Didn’t work. 🙁
Thanks anyway.