Josh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Delete items in footerHi there,
Well, it depends on your site configuration (theme, plugins, etc.). Most themes have an option where you can edit footer area content. Have you looked at the theme options page?
Forum: Fixing WordPress
In reply to: S.o.Slow WP siteHi,
I know this can be frustrating. But stay positive; and let’s see if we can’t find a little more information.
Yes, your site is slow. But your site is also fairly simple in terms of pages and media. The site should load fine without the use of caching and optimizing plugins (although they can certainly help in many cases).
I think the issue is something different.
I loaded your site over gtmetrix. Go to the link; enter your website; let it analyze the content. Then, click “Waterfall” from the tabbed content.
Look at the first item. It’s about 9 to 10 seconds of waiting for the response.
Who is your hosting provider?
Forum: Fixing WordPress
In reply to: how to call secondary menu from a customized pageHmm… I’m not sure I fully understand.
Let’s back up a step. What is it you are wanting to accomplish? Is the primary objective to show a secondary menu only to logged in users?
I’m wondering if two separate headers is necessary. Can’t we just check if the user is logged in; and if so, display the secondary menu? All from the same page?
Sorry if I’m assuming… I do that sometimes π
Forum: Fixing WordPress
In reply to: Create User Account from Non-WordPress SiteCertainly.
And if you do post the code; lemme take a look. You can use pastebin to “hold” the code; and then paste the link back here. Just remember to redact any sensitive info π
Forum: Fixing WordPress
In reply to: No displaying images in media libraryAwesome!
Hope your day becomes just a bit better now π
Forum: Fixing WordPress
In reply to: Lost websitePlease.
I am not trying to be unfair. I understand your frustration, and I can certainly relate.
However, we cannot post server sensitive information here for a variety of reasons. Most importantly; SECURITY. It’s not just about deleting; they can plant viruses, malicious code, etc.
Please do not post the info a third time; or I will be forced to take more drastic action with your account.
I would suggest taking the time to read through @tara’s information above. It contains a lot of useful information.
Forum: Fixing WordPress
In reply to: No displaying images in media libraryExactly π
Okay, now go back and reactivate your theme.
Again, clear your browser cache.
Now, test and see if it works.If it does work, it’s not your theme. Continue.
If it does not work; it’s your theme; and you can dig further there.Now, start reactivating plugins a few at a time.
Again, clear your browser cache.
Now, test and see if it works.If it does work; all those plugins are good. Continue.
If it does not work; one of those plugins is causing the issue. Keep deactivating/reactivating/cearing cache until you narrow down the culprit.Once you know which one… you can take things from there.
Wow… I’m not ever sure how to respond.
Okay, I’ve tagged this topic with “woocommerce”. I am hoping one of their “people” will see this topic soon… and offer some further assistance/clarification.
I’ll also ask my “people” to take a look at this thread… and see if they can offer some assistance/guidance as well.
Hang on for a bit; but keep an eye on this topic.
Forum: Fixing WordPress
In reply to: No displaying images in media libraryOkay… great. I appreciate you taking the time to go through the motions.
So, before we go any further… just to be clear. We have deactivated ALL plugins and are using the 2015 theme (for testing purposes).
Now, let’s manually clear/empty the browser cache… just to be safe.
Okay, go ahead and try one more time. Same results?
Forum: Fixing WordPress
In reply to: how to call secondary menu from a customized pageWhat code are you using to add the secondary menu?
I see that now. Weird?!!
I have no idea how the Woo community works. If you legitimately own the addon; then I would be furious and open a support ticket.
If you do not; then you may have to consider purchasing. Maybe you are using an outdated version of the addon?
Forum: Fixing WordPress
In reply to: removing randome google linkIt’s most likely coming from a plugin or theme option. Does it persist with all plugins deactivated and the theme switched to 2015? If not, you know it is a plugin or theme option.
Forum: Fixing WordPress
In reply to: Getting a page to show posts depending on category and yearOh… awesome π
Well, you’ll probably want to create this as a shortcode. That way, it can be reused multiple times with different attributes.
So, create a shortcode first:
https://codex.wordpress.org/Shortcode_APIThen, decide what attributes need to be passed. I know you’ll need at least a category name; and a year value. The final shortcode might look something like [custom-cat-posts cats=”dogs,cats” year=”2015″].
Then, in your shortcode code; you’ll grab these two values and process them with a WP_Query() function. This will return all the posts matching that criteria.
Once you have the posts.. you can render their output however you like (again from within the shortcode function).
Hope this helps get you started π
Forum: Fixing WordPress
In reply to: How can I remove the underline from a URL?Try this:
<a href="http://www.mylink.com/" target="_blank" style="text-decoration: none; font-family: verdana, geneva; font-weight: bold; color: #91e05c;"> Book Title</a>The text-decoration style attribute needs to be in the a tag… not the span tag. Also, all those spans is redundant… I’ve cleaned it up a bit.
Forum: Fixing WordPress
In reply to: Getting a page to show posts depending on category and yearI would suggest using a plugin.
A quick search led me to this one (looks promising):
https://wordpress.org/plugins/list-category-posts/