mm_developer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Built In Player Code EditingTry this [audio src="audio-source.mp3" loop="on" autoplay="on"]
Here the src should be your audio file.
Forum: Themes and Templates
In reply to: [Chronicle] Pink Everywhere – Changing Pink In Chronicle!Give the website url.
Forum: Fixing WordPress
In reply to: Logo problem on Kickstart themeIf you want the logo size as it is, then increase the #header ‘height’ from 70px to 150px and make the #logo css style ‘top’ from 20px to 0px.
Forum: Fixing WordPress
In reply to: Text Problems on ComputerI am still seeing the line breaks. Unless you remove them, the problem can not be fixed. Even on phone it looks odd because of the line breaks.
If you are facing any issues with the text editor while formatting the text on the page, please copy the content to your desktop text editor like notepad or notepad++ and format it. Then copy the formatted content back to the page.
Forum: Fixing WordPress
In reply to: Custom CSS/Functionality QuestionThrough FTP you can access the theme folder. I think you know the theme folder path wp-content/themes/<theme_name>
Forum: Fixing WordPress
In reply to: Text Problems on ComputerThe content is having line breaks (
tags). Remove the
tags from the content then it will good on desktop browsers also.Forum: Fixing WordPress
In reply to: Multiple category types?Yes, you can select multiple categories and sub-categories for a post.
Forum: Fixing WordPress
In reply to: the page you are looking for is not foundOnce you delete a page it will be moved to trash. If you want to delete the page permanently then go to Trash and delete the page.
Forum: Fixing WordPress
In reply to: Custom CSS/Functionality Questionfor the problem 2:
I think you want the error phrase in one line under the text box. in this case add CSS style display:inline-block to the #name-error.
Forum: Fixing WordPress
In reply to: Custom CSS/Functionality Questionfor the problem 1:
In the current theme folder(I think it is Divi) update the following code at line 95 in the style.css file
Add the input[type=”password”] to the following code:
input[type=”text”], input.text, input.title, textarea, select {
background-color: #fff;
border: 1px solid #bbb;
color: #933333;
padding: 2px;
}So, it now it should be like as follows:
input[type=”text”], input.text, input.title, textarea, select, input[type=”password”] {
background-color: #fff;
border: 1px solid #bbb;
color: #933333;
padding: 2px;
}Forum: Fixing WordPress
In reply to: Random Text on top left of all pagesSearch the text nferpprrereptrf in the theme folder php files using any editor and see if you can find any file contains this text. If still not found then search all the plugin files. I hope it will work.
Forum: Fixing WordPress
In reply to: Random Text on top left of all pagesIt looks like the header.php file is having this text. Check the header.php file of the site theme.
Forum: Fixing WordPress
In reply to: Google IndexingCreate a sitemap and submit it on Google webmaster tools.
Also check wordpress plugin https://wordpress.org/plugins/google-sitemap-generator/ to generate the sitemaps for the site.
more information can be found at https://blog.kissmetrics.com/get-google-to-index/
Forum: Fixing WordPress
In reply to: Syntax error with shortcode in phptry this
<?php echo do_shortcode(‘[tminus t=”03-09-2016 00:00:00″]’); ?>
From admin dashboard you can view the User Roles and Capabilites plugin settings. You can do it from here, no need to go to database tables.