Alexey
Forum Replies Created
-
Forum: Plugins
In reply to: [Taxonomy Images] Does this plugin still work??yes, it works.
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Custom field for subscription formI made Add-on for MailPress to add custom fields to subscription form.
To install add-on:
– upload the file to wp-content/plugins/mailpress/mp-content/add-ons,
– activate from admin menu Plugins -> Add-ons MailPress.Add-on has no interface, so instructions how to add custom fields you can find in a comments in the file.
Tested only with MailPress 5.3
to carlymyman:
Am using Version 1.14.2
Current version of Custom Field Template is 2.0.4
You need to update your version.
I think developers should describe this option in the FAQ.
Found the answer in the source code.
You should use the followingwp_pagenavi( array( 'options' => array( 'always_show' => false ) ) )
It’s caused by loading
<style type="text/css">#wp-content-wrap { display:none; }</style>
with template.
This cause disappearing of content box.
There is wp_editor(…) also loading, i don’t know what for. May be Hiroaki will explain.This code locates in custom-field-template.php (Version: 2.0.2) lines 2620-2625.
if (substr($wp_version, 0, 3) >= '3.3' && !post_type_supports($post->post_type, 'editor') && $post->post_type != 'post' && $post->post_type != 'page') : wp_editor('', 'content', array('dfw' => true, 'tabindex' => 1)); $out = '<style type="text/css">#wp-content-wrap { display:none; }</style>'; else : $out = ''; endif;
Delete this code and content will not disappear next time you load template.
Forum: Fixing WordPress
In reply to: edit Number of post-type taxonomy per page on the backend+1
same problemI fixed the problem!!! ??
custom-field-template.php Version: 2.0.1
3607 if (!empty($val['label']) && !empty($options['custom_field_template_replace_keys_by_labels'])) 3608 $key = stripcslashes($val['label']); 3609 if ($val['hideKey'] != true && $num == 0) 3610 $output .= '<dt>' . $key . '</dt>' . "\n";
To solve the problem you need to rename $key (line 3608, 3610) to $key_fix for example.
After app creation go to advanced settings.
In Migrations section choosedeprecate offline_access: Disabled
Like on pictureThere is a problem in word boundary detection in Unicode strings.
in /includes/jlfunctions/str.php:207 replace this one
$search_regex = "/\b($search)\b(?!(?:(?!<\/?(?:$exclude_tags).*?>).)*<\/(?:$exclude_tags).*?>)(?![^<>]*>)/imsU";
to this one
switch (mb_detect_encoding($search)) { case 'UTF-8': $search_regex = "/($search)(?!(?:(?!<\/?(?:$exclude_tags).*?>).)*<\/(?:$exclude_tags).*?>)(?![^<>]*>)/imsu"; break; default: $search_regex = "/\b($search)\b(?!(?:(?!<\/?(?:$exclude_tags).*?>).)*<\/(?:$exclude_tags).*?>)(?![^<>]*>)/imsu"; break; }
Forum: Plugins
In reply to: [qTranslate] qTranslate and MailPress (e-mail subscription)You can add user to a different mailing list by showing different subscription forms.
Just add this shortcode[mailpress mailinglist=id]
to the page template (use do_shortcode() ).
Change ‘id’ on the fly, based on page language.Forum: Plugins
In reply to: [qTranslate] qTranslate and MailPress (e-mail subscription)The only thing I don’t know how to do is to
change default subscription based on, say, browser language.What do you mean under “default subscription”?
Forum: Plugins
In reply to: [qTranslate] qTranslate and MailPress (e-mail subscription)I think that the better way is to sort users in different mailing list when they click subscribe. For example if English man click subscribe than place him in English mailing list. And so on this each other.
Then create one mail for each language and send them to appropriate mailing list.Forum: Fixing WordPress
In reply to: не могу зайти в админпанель после обновления WordPressЗайди по фтп, переименуй папку
plugins
и попробуй зайти в админку.Forum: Plugins
In reply to: [Rich Text Tags] [Rich Text Tags] can't login after plugin activationYes? i know this method. I’ve already removed it via ftp and problem has gone.