sherban1988
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP Site SpeedTry installing a caching plugin like W3 Total Cache or WP Super Cache, those can really help.
Forum: Fixing WordPress
In reply to: post images are off by a post. Show wrong imageThe get_post_thumbnail() function needs to be after this line:
while ( $new_query->have_posts() ) : $new_query->the_post();
Otherwise, it doesn’t know what post thumbnail to get.
Forum: Fixing WordPress
In reply to: Can I safely remove generated thumbs?Yes you can remove them with no problem if you aren’t using them.
You can exclude them if you have FTP access and can change the code of a certain file in your theme.
Forum: Fixing WordPress
In reply to: can't log inIs the 2 step authentication from a plugin?
If so, you can disable the plugin either through FTP or through the database, do you have access to any of those?
Forum: Fixing WordPress
In reply to: Creating online journal for my membersHmm, I don’t know of any plugins with all those functions. This sounds like more of a custom job, you may need to get a developer to do it for you.
Forum: Fixing WordPress
In reply to: Can someone point me in the right direction for this functionality?That would be some custom coding done on the theme.
Or at least that’s how I’d do it.
Forum: Fixing WordPress
In reply to: Accidentally deleted my websiteYour current theme apparently had some issues with the update.
Do you have acces to your website FTP, or some sorts of file manager from your web hosting service?
Forum: Fixing WordPress
In reply to: External link for image not working in widgetThe href attribute for the a tab should be
Also, you have an extra set of quotes at the end of the href attribute.
Forum: Fixing WordPress
In reply to: can't access my admin siteDid this happen like overnight, or did someone do some work on the site?
Forum: Fixing WordPress
In reply to: Vertical stacking error in footer tab (Inspire theme)If it’s supposed to expand and stuff, then the problem is a bit bigger I think.
You should contact the dev who built you the site.
Forum: Fixing WordPress
In reply to: transparent backgroundI can see from the code that you have a plugin called autoptimize, a caching problem.
Does it have a “reset cache” or “delete cache” or something like that button?
The site gets it’s css from a file in that plugin that is created from your style.css file. It’s possible that it didn’t recreate that file after you modified yours.
Maybe disable that plugin temporarily, and see if the code works then.
Forum: Themes and Templates
In reply to: Center Featured Image OnlyHey.
Edit the .css of the theme (if you can) and add this at the very end:
img.ubb_left {float: none; display: block; margin: auto !important;}
Forum: Fixing WordPress
In reply to: Vertical stacking error in footer tab (Inspire theme)Right.
Well without knowing exactly how that’s build, theres only so much I can do, but here’s something you could try.
Edit the style.css file (go to appearance -> editor and look for it in the list) by adding at its very end this
ul#footer_carousel li {float: left; margin-right: 20px;}
Lemme know if this worked, yeah?
Forum: Fixing WordPress
In reply to: Vertical stacking error in footer tab (Inspire theme)Hey there,
I only see one image in the footer tab. Could you please add at least one more so I can check out what’s up?
Also, I see a class called footer-carousel. Are you using a plugin or something for the footer images?
Forum: Fixing WordPress
In reply to: Firefox Fonts not WorkingHey,
Can you please share the site link, so I can check out the code?
Also, I’ve read (but haven’t tested myself) that firefox has a requirement that the fonts you use are on your own server, so if you use something like google-fonts, that are stored somewhere else, that could be the problem.