gidd
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Rotator] Text FormattingHello dwjef,
Currently, text formating is a bug. As the html output was striped from the editor and limited to some tags<p>,<a>,<img><object>,<embed> and <param>
.However, in item description box below the editor, you can enter html markups.
Forum: Fixing WordPress
In reply to: Cannot Access WP-Admin pageI think you can try to deactivate all plugins & themes from database:
https://perishablepress.com/quickly-disable-or-enable-all-wordpress-plugins-via-the-database/
https://docs.appthemes.com/tutorials/how-to-change-wordpress-themes-directly-from-the-database/
After you have done these and still have problems, your database is not working properly. In my case, I do backup and reinstall from scratch and import old database back into the new database.
Forum: Themes and Templates
In reply to: Polished Theme: Footer is goneThe content div is absolute which is staying on top of the footer. If you put the div footer inside the content div,it should show.
Forum: Fixing WordPress
In reply to: Customize ThemeProbably, your theme has problems that make the customizer stop working. You can switch to default theme and test the customizer again.
Forum: Fixing WordPress
In reply to: Every Backsite Page is BlankI used to have this problem sever times due to plugin incompatibility, database problems, hosting configuration, site migration and so on.
The way, I solved it, is to check for specific case:
– deactivate all plugins from database
– reset the theme to default
– check database integrity like missing a table or corrupted
– backup old database, reinstall and import from old db
– check the hosting configurationHope this help you in some ways.
Forum: Everything else WordPress
In reply to: User registration and mapI did it with this framework.
If you know how to code in PHP & WordPress. It will help you to make it.Forum: Everything else WordPress
In reply to: User registration and mapHello, I have done a registration similar to what you look for. However, this is done by custom coding only.
You can use get post thumbnail. Here is the codex documentation.
Forum: Themes and Templates
In reply to: Cant move header logo up, tried all similar threads. Please helpHello,
Maybe you can try this css:
#container{ position: relative; } .logo{ position: absolute; top: 10px; left: 0; }
Forum: Themes and Templates
In reply to: footer & sidebar disappear when I add in the loopWhen the post is displayed, it doesn’t complete properly. There is something wrong inside the loop content. Thus, the sidebar and the footer are not executed.
Forum: Themes and Templates
In reply to: [Spun] page widthIt can center your content. You just need to find a way to make it apply to your content. One way to do this is to apply the “!important” to the end of css rules. For example:
width: auto !important;
margin: 0 auto !important;
float: none !important;
padding: 0 !important;
You can hide the title by adding:
.page .entry-title{ display: none; }Hope this helps.
Forum: Themes and Templates
In reply to: footer & sidebar disappear when I add in the loopsomething went wrong with the loop. You need to debug that loop file.
Can you post a link to your site?Forum: Themes and Templates
In reply to: footer & sidebar disappear when I add in the loopI think you have the problem with coding comment in the fourth line, count from the bottom:
<?php endif; // end have_posts() check ?>
you can replace it with:
<?php endif; // end have_posts() check ?>
Forum: Themes and Templates
In reply to: [Hueman] 2.0.1 version – site not centeredCan you post the link to your website? So I can help to center it.
Forum: Themes and Templates
In reply to: [Spun] page widthReddbonetv, this style should center your content:
.single #primary, .page #primary, .search-no-results #primary, .error404 #primary{ width: auto; } #content .hentry{ float: none; } .single .hentry, .error404 .hentry, .page .hentry, .search-no-results .no-results{ margin: 0 auto; padding: 0; }
if you want the title center as well:
.entry-title, .entry-title a{ text-align: center; }