Denis Rakhmanov
Forum Replies Created
-
Confirm same problem, it can be solved by adding an if condition.
And replacing the statement on line 131 in to condition :
if (($rows = apply_filters( ‘wpmem_native_form_rows’, $rows ))){
foreach( $rows as $row_item ) {
if( $row_item[‘type’] == ‘checkbox’ ) {
echo $row_item[‘row_before’] . $row_item[‘field’] . $row_item[‘label’] . $row_item[‘row_after’];
} else {
echo $row_item[‘row_before’] . $row_item[‘label’] . $row_item[‘field’] . $row_item[‘row_after’];
}
}
}
}Forum: Requests and Feedback
In reply to: Reviews and Rating are missleading and not helpful!That has been recently implimented, and I havent noticed it since have lost my belief in rating system here. Thanks for attention, its Solved.
Forum: Requests and Feedback
In reply to: WordPress as a web control panelWell many beginers do not have self managed servers. So its likely thirs come with Cpanel or some other homebrew. Including such software with blog platform would be massive overkill.
Forum: Requests and Feedback
In reply to: WordPress Web InstallerWell to upgrade the WP all you need is log in to the admin panel, and click update when new version available. That goes for the plugins, themes and core.
Installation is fine you just upload files you need install, only have to do it once. Specially if you want to have custome theme and other plugins uploaded specific to your install thats the easiest way.Forum: Requests and Feedback
In reply to: unclear privacy settingsThats probably from some plugin not core WP itself.
Forum: Fixing WordPress
In reply to: how to remove white box around text imageFirst of all what is “text image”? But yeah its CSS of your theme.
Forum: Fixing WordPress
In reply to: How to remove searchbox in wordpress theme ??You would have to remove it’s widget from your theme.
Forum: Fixing WordPress
In reply to: can't access to admin page of wp for my websiteThat would just mean that you mess up something :).
Changing password field in the users table alone could not cause that.Forum: Requests and Feedback
In reply to: WordPress as a web control panelWhat do you mean by web control panel?
Forum: Plugins
In reply to: [Countdown Timer] What time zone does this countdown use?Script uses time zone set in php.ini.
If you want to make adjustments to the date, do this:
Example for 11 december 2012 at 20:30:00. (8:30 pm)
[fergcorp_cdt_single date=”2012-12-11T20:30:00+02:00“], this would add 2 hours to your time zone setting, so if its -6 as example to it would make it -4. And event would be sooner. Change it to what is your and server time difference.