ProjectArmy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to this post!A quick fix is to hide that section using CSS.
Here’s the code:
.single .su-linkbox{display: none;}
Just put it in the style.css file which you can find under Appearance > Editor
The proper fix is to look for look for the setting or the plugin that adds this feature. You can start with disabling any recent plugins that you have installed one at a time.
Forum: Fixing WordPress
In reply to: Login Issue – Work Blog, Person LeftHi Emilie. You can contact the company that is hosting your blog. They will be able to help you with getting the access to your blog.
Forum: Fixing WordPress
In reply to: How to make line breaks workIf you are having problems with the vertical spacing, you may want to make use of the line-height property of CSS.
Forum: Fixing WordPress
In reply to: Can't load a script…..yeah i am new here…Have you checked the console log for any script errors?
Forum: Fixing WordPress
In reply to: [an error occurred while processing this directive]If you don’t have .htaccess, you can create it by logging in to your the control panel of your host and going to the file manager.
Here’s what the contents of your .htaccess should be.
Forum: Fixing WordPress
In reply to: Help recovering wordpress.com name/passwordoscvichka, looks like your website is hosted by justhost. You may need to contact them to get your login details for the website.
https://www.webhostinghero.com/who-is-hosting/?id=98c6867f483eaefaa8495ff413909c30
Your hosting provider: https://www.justhost.com/
Forum: Fixing WordPress
In reply to: What is the size of the background on site?I think something like 1920 pixels x 1080 pixels is decent. I don’t think DPI (Dots per inch) is ideal to use since the dimensions of a webpage is measured by pixels and not by inch.
Forum: Fixing WordPress
In reply to: Simple audio player help please, I am a newbieGlad to know that you were able to make it work.
If you have a limited bandwidth then I think contentiskey’s advice would be useful. It would be better if you have your sound files / recordings hosted elsewhere (example, youtube).
Forum: Fixing WordPress
In reply to: Getting error page when trying to get to both site and admin siteWhat’s the name of your hosting provider? Usually the cpanel / control panel / website manager is in your website’s hosting dashboard. You will then be able to access the file manager from there.
Forum: Fixing WordPress
In reply to: Fatal ErrorThe changes in that guide is something that you have to do from either your cpanel’s file manager or from the FTP. You can’t access the wp-config.php file from the dashboard.
Forum: Fixing WordPress
In reply to: How to Add MegaPhone Landing Page to my SiteWhere did you paste the code? Can you give us the URL of the page?
Forum: Fixing WordPress
In reply to: Moving SiteYou can try to use this plugin:
https://www.ads-software.com/plugins/duplicator/
It will create a downloadable zipped file which contains the website and the database plus an installation php file that you put in the new server.
Forum: Fixing WordPress
In reply to: Simple audio player help please, I am a newbieYou don’t need to. The code should work with an m4a file.
You can write the code like this:
<audio controls> <source src="https://your-site.com/file/file-name.m4a"> Your browser does not support the audio element. </audio>
This is tricky. Have you tried reinstalling the core files, disabling all plugins or switching themes?
Forum: Fixing WordPress
In reply to: Simple audio player help please, I am a newbieThe solution requires a bit of coding.
https://www.w3schools.com/tags/tag_audio.asp
You can use the text editor tab when editing pages in wordpress to add codes.
I hope this helps.