Sage Brownell
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't see all my product pagesAre you using wp e-commerce?
Your site isn’t really loading for me so I can’t look into it too deeply. Do you have pagination activated?
Forum: Fixing WordPress
In reply to: How to add custom menu on dashboardI guess you would have to create a new page and add it to your custom menu. You would probably have to contact/get support from liberty reserve for the code that you need in the page. If that won’t work I would suggest try a different payment gateway so you could use a e-commerce plugin?
Forum: Fixing WordPress
In reply to: New page won't create new tab – so page can be found on websiteDashboard > Appearance > Menus
If that isn’t enough info, click below.
https://bit.ly/sqexrgForum: Fixing WordPress
In reply to: header text changeDashboard > Settings > General Settings > Site Title
Forum: Fixing WordPress
In reply to: How to add custom menu on dashboardAre you using wp e-commerce? If not, which plugin are you using?
Forum: Fixing WordPress
In reply to: Can't see all my product pagesI might be able to help if you provide a link to your site — that way I could see the problem for myself.
Forum: Fixing WordPress
In reply to: Job Listing board plugin?You could use a forum plugin, which would allow people to reply to posts as well as the creator edit them.
Forum: Fixing WordPress
In reply to: link gallery to productAre you using a gallery plugin? If so, which one?
Forum: Fixing WordPress
In reply to: Something wrong with home page – permalink?What are your reading settings set to?
Forum: Fixing WordPress
In reply to: Site has been hackedForum: Hacks
In reply to: NextGEN Gallery: Need hack for Lightbox bg to make it white instead of grayNo problem, really glad I could help.
Forum: Fixing WordPress
In reply to: Custom Permalink Structure Creating Excerpt ProblemDoes this help at all?
https://codex.www.ads-software.com/Using_PermalinksMake sure to end your structure with either %post_id% or %postname% (e.g. /%year%/%monthnum%/%day%/%postname%/) so that each permalink points to an individual post.
For performance reasons, it is not a good idea to start your permalink structure with the category, tag, author, or postname fields. The reason is that these are text fields, and using them at the beginning of your permalink structure it takes more time for WordPress to distinguish your Post URLs from Page URLs (which always use the text “page slug” as the URL), and to compensate, WordPress stores a lot of extra information in its database (so much that sites with lots of Pages have experienced difficulties). So, it is best for the first structure tag to be a numeric one, such as /%year%/%postname%/. (Some people recommend /%post_id%/%postname%/ which works for performance reasons but others recommend against it because it is unfriendly to users in the many contexts in which users interact with URLs.) See Otto’s technical writeup on the topic as well as this wp-testers discussion.Forum: Hacks
In reply to: i want to change all urlsI am not sure if this would work properly for you…but you can make a custom permalink set to “/%postname%” and that usually will do the trick. However, it is strongly suggested that you don’t use it like this.
Hope this helps!
Forum: Hacks
In reply to: NextGEN Gallery: Need hack for Lightbox bg to make it white instead of grayIn
Plugins > Editor > NextGEN > nextgen-gallery/shutter/shutter-reloaded.cssChange this code:
div#shShutter { height: 100%; z-index: 1000; background-color: #000000; opacity: 0.8; filter:alpha(opacity=80); }
For this code:
div#shShutter { height: 100%; z-index: 1000; background-color: #FFFFFF; opacity: 0.8; filter:alpha(opacity=80); }
(just change the background colour)
Hope this helps!Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] ABSPATH errorDid you have a look at this?
https://www.ads-software.com/extend/plugins/wp-super-cache/faq/
Scroll down to the troubleshooting part…#5 has a bit about abspath.Hope this helps even a little bit!