Marcin
Forum Replies Created
-
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Let user sign up to multiple lists?Hey, thanks for reply.
I’m thinking about situation when user subscribed list number one and for example day after, back to site with other popup and then SAME EMAIL subscribing other mailing list.
How I can get actual id’s of subscribed list by user?
$subscriber->cf_cl will return list of subscribed lists by user?
Forum: Fixing WordPress
In reply to: spamming bots – option_com=k2, htacces changingAny ideas guys? :/ site is not working…
its mailpoet, change:
\core\base.php : 68 line
public static function wp_get_userdata( $field = false ) { //WordPress globals be careful there global $current_user; if ( $field ) { if ( function_exists( 'wp_get_current_user' ) ) { // Here is an exception because of one of the weirdest bug // the idea is to make sure we don't call get_currentuserinfo on the wysija_subscribers page when on a multisite if ( ! ( isset( $_GET['page'] ) && $_GET['page'] === 'wysija_subscribers' && is_multisite() ) ){ wp_get_current_user(); } } if ( isset( $current_user->{$field} ) ){ return $current_user->{$field}; } elseif ( isset( $current_user->data->{$field} ) ){ return $current_user->data->{$field}; } else { return $current_user; } } return $current_user; }
and line 1222:
public static function update_user_caps(){ global $current_user; if(empty($current_user) && function_exists('wp_get_current_user')) wp_get_current_user(); if(empty($current_user)) return false; $current_user->get_role_caps(); return true; }
same issue after updated wordpress, ideas to fix it?
Forum: Plugins
In reply to: [MemeOne] Use Meme also as featured imageHey,
I cant find the “Set Featured Image” plugin by By Frank Bültge”
Could you send link to that plugin?
Forum: Plugins
In reply to: [Thumbs Rating] Is pagination really working?Hey, so I did like i said:
I made just post args:
$args = array( 'post_type' => 'post', 'posts_per_page' => 5, 'order' => 'DESC', 'meta_key' => '_thumbs_rating_up', 'orderby' => 'meta_value_num', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1), ); query_posts($args); ...
and worked perfectly!
Forum: Plugins
In reply to: [Thumbs Rating] Is pagination really working?Hello, thanks for your fast reply.
So maybe there is a possibility to display posts like category view with ORDER in query posts by votes?
Forum: Plugins
In reply to: [Contact Form DB] submit_time in mysqlThanks for answer.
So there is possibility to change format of submit_time in mysql?
Forum: Plugins
In reply to: [The Events Calendar Shortcode & Block] Possibility to show calendar?good to know, estimating time? ?? or any idea to display calendar with subpage/post with filtered categories ?
Forum: Fixing WordPress
In reply to: HTTP Error after 3.9.1 updateafter an update.
Changing theme to default isnt working.
Forum: Fixing WordPress
In reply to: HTTP Error after 3.9.1 updateany ideas guys?
Forum: Fixing WordPress
In reply to: HTTP Error after 3.9.1 updateI contacted, they said i should try php version to 5.5.
I did “AddType x-mapp-php5 .php”
but then my wordpress theme isnt working and rest of files.
Forum: Themes and Templates
In reply to: Problems with div's, margin and padding not workingOk, i fixed everything what i could.
now can someone help me with my problem about div’s?
Forum: Themes and Templates
In reply to: Problems with div's, margin and padding not workingNope, first i want to fix errors from validator…
Forum: Themes and Templates
In reply to: Problems with div's, margin and padding not workingOk you were right, that was unclosed tag. and i have last error:
<div class="bigdate"><?php the_time('d.m'); ?></div> <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>" class="post-content"> <?php the_title() ?> <span class="post-content-excerpt"> <?php the_excerpt() ?> </span> </a> </div><!-- .post -->
the problem is that excerpt look like <p>blablabla</p>, and “One possible cause for this message is that you have attempted to put a block-level element (such as “<p>” or “<table>”) inside an inline element (such as ““, “<span>”, or “<font>”).”
any ideas to fix it?