Sonika
Forum Replies Created
-
Forum: Plugins
In reply to: [cformsII] Dinamicaly insert custom fields values in cforms fieldsADD:
So i have<?php $roomtypes = get_post_meta($post->ID, 'roomtypes', false); ?> <select> <?php foreach($roomtypes as $roomtype) { echo '<option>'.$roomtype.'</option>'; } ?> </select>
And i get:
<select> <option>Standard</option><option>Lux</option><option>Suite</option> </select>
How to put this values in cforms’ form?
Forum: Plugins
In reply to: [cformsII] other: remove backup in weird NUL offset formatBut I do not know why people want to backup/restore forms and not their whole database
Because for example I have several sites with similar forms, so when I run new site – i dont want to create forms, I want to backup form from old site, restore it at new site and make some small changes. It saves my time.
- This reply was modified 8 years, 6 months ago by Sonika.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Gallery templates – Caption nggtagsForum: Plugins
In reply to: [Len Slider] Slider not workThanks)
Forum: Plugins
In reply to: Remove title/author/date if post has Paginating with nextpagegeetjacobs, thanks!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Slideshow doesnt work with last uptdateMaybe it be useful for somebody:
if you change in general options you domain this way:
old: mysite.com
new: www.mysite.com
you should change path to imagerotator.swf:
https://www.mysite.com/wp-contents/uploads/imagerotator.swf
Forum: Fixing WordPress
In reply to: Fatal error: Cannot use string offset as an array in …..vertino, thanks.
Forum: Requests and Feedback
In reply to: Request: Custom fields for categoriesHow to upgrade plugin category-fields for wp 2.8
changes in category_fields.php:
/////////////////////////////
[1]
wp_enqueue_script(‘wp_tiny_mce’);
replace with:
add_filter(‘admin_head’,’ShowTinyMCE’);
function ShowTinyMCE() {
// conditions here
wp_enqueue_script( ‘common’ );
wp_enqueue_script( ‘jquery-color’ );
wp_print_scripts(‘editor’);
if (function_exists(‘add_thickbox’)) add_thickbox();
wp_print_scripts(‘media-upload’);
if (function_exists(‘wp_tiny_mce’)) wp_tiny_mce();
wp_admin_css();
wp_enqueue_script(‘utils’);
do_action(“admin_print_styles-post-php”);
do_action(‘admin_print_styles’);
};[2]
global $wpdb, $table_prefix;
$wpdb->query(“CREATE TABLE IF NOT EXISTS ‘$wpdb->cat_fields’ (
‘field_id’ INT NOT NULL auto_increment ,
‘cat_id’ INT NOT NULL,
‘kkeys’ TEXT NOT NULL ,
‘kval’ TEXT NOT NULL,
PRIMARY KEY ( ‘field_id’ ))”);replace with:
$sql = “CREATE TABLE ” . $cat_fields . ” (
‘field_id’ INT NOT NULL auto_increment ,
‘cat_id’ INT NOT NULL,
‘kkeys’ TEXT NOT NULL ,
‘kval’ TEXT NOT NULL,
PRIMARY KEY ( ‘field_id’ )
);”;
require_once(ABSPATH . ‘wp-admin/includes/upgrade.php’);
dbDelta($sql);/////////////////////////////
It’s work for me.
Forum: Requests and Feedback
In reply to: Request: Custom fields for categories@stvwlf, thanks!
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] Missing description under thumbnailsmonodistortion, thanks a lot for
[nggallery id=x template=caption]
!Forum: Everything else WordPress
In reply to: New paragraphs without html tags in custom fieldshttps://www.ads-software.com/extend/plugins/custom-field-template/
see screenshotsSupport for TinyMCE in the textarea
Forum: Plugins
In reply to: Thumbnails on mainpage, full size in postForum: Plugins
In reply to: Searching for plugin that allows users to post new posts from main pagelegimoney, https://www.sonika.ru/blog/wordpress/tdo-mini-forms-rus.htm
перевод для 0.12.7 скоро выложу
также см. аналог: https://mywordpress.ru/plugins/ads-wordpress/Forum: Plugins
In reply to: Evermore Plugin problem- links lead to no where…try this plugin
https://blog.portal.kharkov.ua/2008/05/10/auto_more_3/
___https://www.portal.kharkov.ua/soft/auto_more_3.zipForum: Fixing WordPress
In reply to: [Plugin: TDO Mini Forms] TDO Mini forms widget problemThanks for the answer, but I have found other reason:
https://thedeadone.net/forum/?p=761#comment-1728