cukeving
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: If I change a pretty permalink, shouldn't references to it change??Hi Andy,
If you are pasting hyperlink to other posts within the content of a post – it pastes the exact URL at that moment into the content of the post. If you change the URL later it does not update it.
The only thing I know that automatically updates is menu items – or anything that is using the page id as a reference rather than the url.
Forum: Fixing WordPress
In reply to: Top Bar Font ColorChange the one I gave you to:
#top-bar li>a { color: #777777; text-decoration: none;}Add this one to correct the left:
#top-bar {color:#777777;}If you want a hover state for your top menu items on the right use the following and set the appropriate hex color:
#top-bar li>a:hover { color: #51b579; }Forum: Fixing WordPress
In reply to: my dropdown-menu-button doesn't display as it should… any idea?If you said it did initially work but then stopped – it could be a plugin conflict.
Have you tried deactivating all of them and then reactivating one at a time?
Forum: Fixing WordPress
In reply to: my dropdown-menu-button doesn't display as it should… any idea?It would be best to contact directly the support for your visual composer.
I’ve noticed some hosts have query request limits within a period of time – I encountered this issue with a client on Netfirms just recently. Not sure if anything but switching the host is the solution if you have an active site.
Forum: Fixing WordPress
In reply to: How to change a thumbnailAlso – do you have a lot of plugins installed? Have you tried disabling them and then seeing if that feature works? If that is the issue – then re-enable them one at a time until you find the culprit.
Forum: Fixing WordPress
In reply to: How to change a thumbnailUsually the theme has a credit and a URL.
If you go into Appearance > Themes in the WordPress dashboard you should be able to see the Author.I don’t know if this is your theme – but I found this reference online.
http://blogelina.com/2015/04/24/10-days-of-free-themes-day-ten-the-marianne/Forum: Fixing WordPress
In reply to: can not change theme or plugins in wordpress 4.3.1 (new install)Possibly file permission errors?
Can you see the file permissions through the control panel?
https://codex.wordpress.org/Changing_File_PermissionsForum: Fixing WordPress
In reply to: my dropdown-menu-button doesn't display as it should… any idea?Try clearing your browser cache.
Can you post the URL?
Are you using Javascript to do the toggle?Forum: Fixing WordPress
In reply to: Any one know how make an online site like this?If you want it to verify the invoice number then the invoice would have to exist within your WordPress already. If you already have an invoice system and you need this feature exactly it would likely be a custom build. If you approach the invoice system plugin creator it could be a time/money saver.
If the invoices don’t exist yet – there are a lot of invoicing plugins (free and paid) – not sure if any work exactly the way you’ve specified – but one might.
Forum: Fixing WordPress
In reply to: How to change a thumbnailThat looks like a theme not from the WordPress Theme Directory. You would likely need to contact the theme provider’s support directly for a quick resolution.
There is no link to set a Featured Image down the right sidebar when creating a new blog post?
Forum: Fixing WordPress
In reply to: Blog Infected with Malware?!!!FYI – it’s not ever usually the case of just one file – you will most likely find that they have inserted more and/or modified a few in your theme or inserted something into the database.
You should read through the links Tim provide.
Any chance you have a backup to restore to?
Forum: Fixing WordPress
In reply to: Insert a Read More with jQueryI’m not an expert – i think there were only 3 places in your code that needed changing:
var $el, $ps, $up, totalHeight;
jQuery(“.sidebar-box .button”).click(function() {
totalHeight = 0
$el = jQuery(this);
$p = $el.parent();
$up = $p.parent();
$ps = $up.find(“p:not(‘.read-more’)”);// measure how tall inside should be by adding together heights of all inside paragraphs (except read-more paragraph)
$ps.each(function() {
totalHeight += jQuery(this).outerHeight();
});$up
.css({
// Set height to prevent instant jumpdown when max height is removed
“height”: $up.height(),
“max-height”: 9999
})
.animate({
“height”: totalHeight
});// fade out read-more
$p.fadeOut();// prevent jump-down
return false;});
Forum: Fixing WordPress
In reply to: Locked out of my WordPress account (Two-step authentication)Do you have cPanel access with your hosting account that has a File Manager?
If you do you can delete the 2factor authentication plugin in folder
/wp-content/plugins/Forum: Fixing WordPress
In reply to: Image map misalignedSeems to align properly for me
Have you tried clearing the cache from your browser?