acmb3
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't view blog or site adminHey,
open wp-config.php within the root installation of wordpress and make sure it has the RIGHT database settings. If it does then go and check your database. If your database has been wiped out (for whatever reason) then reload from a backup and you should be golden.
Forum: Fixing WordPress
In reply to: Blog posts hosted on a pageWhen I want this, I make “blog” a category and then post my articles in there.
Then I use this permalink structure:
%category%/%postname%
So “blog” is the category then the post is shown. This then allows me to keep pages in a nice format “page-name” etc… Works well for me.
Forum: Fixing WordPress
In reply to: Add Media FunctionalityCheck to make sure your upload folder has proper permissions.
You can also turn on Debugging to see if you get an actual error message returned.
Forum: Themes and Templates
In reply to: Remove Bio Boxsingle.php should in theory be using the “loop template” – so check content.php instead of single.php. You should find the bio template code there.
Unless of course you are using a custom loop template – content-single.php perhaps etc.. Give those a look. 🙂
Merry Christmas!
If you are unsure how to do that just hit up my contact form on moonbase3.com and send your FTP details – I can go in and fix it up. 🙂
I looked a bit further into this plugin and it looks to be hosted by the provider (3rd party). No wonder our changes don’t take affect. 🙂
Okay, here is what I want you to do.
#1. Go to your FTP and open the script “pf.php”. You should be able to find it here: “wp-content/plugins/printfriendly/pf.php”.
#2. Go to line 223 (should be around there). You are looking for these:
var pfHeaderImgUrl = "<?php echo $image_url ?>"; var pfHeaderTagline = "<?php echo $tagline ?>"; var pfdisableClickToDel = "<?php echo $this->options['click_to_delete'] ?>";#3. Add this below the last option:
var pfDisablePDF = 1;#4. Save the file and give it a try! This should remove the PDF option from the pop-up now properly.
Give this a try:
#pdf {display: none;}Post a link to your site so I can see please. 🙂
Forum: Plugins
In reply to: [Firelight Lightbox] Notice: Undefined indexNot a huge deal, shouldn’t hurt the function of the code but you can remove that error by doing this:
CHANGE:
if ($_value['id']) register_setting( 'media', $_value['id'] );To:
if (isset($_value['id']) && $_value['id']) register_setting( 'media', $_value['id'] );try:
.pf-src {display: none}Not sure if that’s the right class just going off of what you put above.
Also, make sure your adjustment (css) loads AFTER the plugins css. CSS is read from the top down, so if they define “display: block” within the plugins css your code will have no affect.
Lets see if that helps. 🙂
Forum: Plugins
In reply to: [Ultimate CMS] JS error in admin menuHey Dravenrip,
I had a custom plugin that was causing the same error “e.widget.extend” – to fix it I removed my call to my own jquery library within the plugin and used WP’s default.
You might be able to fix the above issue doing the same, go into the plugin ultimate cms and comment out the base jquery include (leaving any custom ones of course). See if that fixes it.