CaliSportbiker
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Customer Area] Main menu disappears after installAs an update, I discovered that turning off the default CSS style sheet in Customer Area seems to resolve the issue so far. For others wanting to know how, go to Customer Area (in your WP dashboard) > Settings then the Frontend tab and turn off “include CSS”.
I wish I was, but I’m glad it helped! Thanks for the shout back.
I’m not sure about the server settings you have. This should work in most environments, but after spending days trying to figure it out myself, I found a fix which just made NextGen worth every penny!
For anyone else having a problem with the .png watermark not displaying or showing on your NextGen Gallery images (even though it’s showing on the thumbnail during option setup), here’s a fix I found. Having explored dozens of other possibilities, I’m betting this solves the problem for most of you.
When designating your watermark, use an absolute path. Most of us have assumed it meant something like this example:
https://www.mydomain.com/images/watermark.png – But this will not work.
You need an absolute path that looks more like this example:
/homepag/81345/d1212123/htdocs/mysite/Blog
So how do you determine your “absolute path”?
STEP ONE
In Mac, create a new text file. Make sure it’s PLAIN TEXT, not RICH TEXT. You can choose that option in the format dropdown. For Windows, launch Notepad. What we’re trying to do here is use a PLAIN TEXT editor. We want to avoid using Word. That’s a discussion for later.After you created a new plain text file, place this code in it:
<?php $path = getcwd(); echo "Your Absolute Path is: "; echo $path; ?>
Save the file as “abspath.php” in the same folder as the watermark image.
STEP TWO
Now with your FTP program, upload the file. Again – upload this file to the same folder holding your watermark image!STEP THREE
Visit the URL to this file in your web browser:
Example: https://www.mydomain.com/Blog/abspath.phpSTEP FOUR
You will see this page display the REAL absolute path you’re looking for.STEP FIVE
Copy that convoluted looking absolute path into your Worpress/NextGen watermark options and paste that as the path FOLLOWED by:/mywatermark.png
So, it will ultimately look something like this:
/homepag/81345/d1212123/htdocs/mysite/Blog/mywatermark.pngForgive me for being “wordy”, but I know there are many who aren’t programmers and I think a little more info sometimes helps.