Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)
  • Thread Starter masspamak

    (@masspamak)

    It was an error in a MO file, resolved, anyway, thanks, great plugin.

    Thread Starter masspamak

    (@masspamak)

    Hello, thanks for your reply.

    Nextend Twitter Connect ask for a valid user email addresse after connecting to the Twitter account, Nextend Facebook Connect should do exactly the same and the problem is solved. Also it would be more easy to have the Facebook application rewieved and approved as it get nothing but the authorisation to connect.

    I have switched to another plugin to connect with Facebook.

    Same probleme here, even if user allow sharing their FB email address, the WP field Email in the users list still empty (the same plugin for Twitter and Google get the user’s email address…)

    Thread Starter masspamak

    (@masspamak)

    Hello,

    I do not still following the Website using the plugin, i know that another plugin/solution were used.

    Nice! It seems to work well and fit my -encoding- needs!

    I still have a problem with the ‘ sign used in the Email template that broke the php code (you know those ” and ‘ around) but i will find the way to get it working.

    My last question would be: a bot or spambot could get or use this mailto linked image to spam around?

    Actually my mailto image is hidden in a DIV that user have to unhide by clicking a #link, but i would like to avoid this user action by having the mailto image available to users as soon they land on my page (visitors only and not bot, of course).

    Many thanks for your support and for this plugin that really works.

    Hello, i switched to your plugin recently also because I’ve think this thread would definitively fix my problem but I did not get it working in a specific case, i haver the following code in my template and would like to encode the email address, i can get it working when i call the encoding in plain text

    Send a email to <strong><?php $emailforrequest = get_post_meta($post->ID, 'emailforrequest', TRUE);
    echo eeb_email($emailforrequest, 'the support team'); ?></strong> to get help.

    this is ok ! But if i try to insert it in my “mailto” template as the following example it does not works.

    <a title=click here to open the email" href="mailto:<?php the_field('emailforrequest'); ?>?subject=the subject line&Body=my body content that may call other php function such as <?php the_title(); ?>"><img class="imgclass" title="imgtitle" alt="imgalt" src="imgsource.png" width="240" height="24" /></a>

    at this point i replaced

    <?php the_field('emailforrequest'); ?>

    with

    <?php $emailforrequest = get_post_meta($post->ID, 'emailforrequest', TRUE);
    echo eeb_email($emailforrequest, 'Mail Me'); ?>

    but it does not works at all.

    I’ve followed your FAQ and tips but cannot get it working, also i did not found the way to generate a mailto template to with PHP, it may works better as i could call each element (email, subject and body) with single PHP string and avoid to broke the encoding function.

    Many thanks for your help

    Thread Starter masspamak

    (@masspamak)

    Many thanks for your support, i still using the plugin this way (with modifications as explained above) and looking forward for the next updates.

    Thread Starter masspamak

    (@masspamak)

    i will try, thanks, for now i’ve cut all the code, in the meantime google shows “ratings_users: 0; ratings_score: 0; ratings_average: 0; wpcwv2_override: 0;” it seems that placing the code within /**/ does not help so much and could make confusion on what google read.

    Wait next day to see how google will see my new -rated- posts, then i will see if uninstall the plugin or not.

    thanks for your help!
    Mass

    Thread Starter masspamak

    (@masspamak)

    does not work with my code: Parse error: syntax error, unexpected end of file in /wp-content/plugins/wp-postratings/wp-postratings.php on line 1494

    line 1494:

    ### Seperate PostRatings Stats For Readability
    require_once('postratings-stats.php');

    i restored the original file, /**/ it and it worked, now i wait to see what google will display, then wait for a plugin update where the plugin will not send stuff to google or at least allow users to turn off this -hidden- feature, i do not find any note about google on the plugin page, it should be clear for the users that the plugin will mainly affect how google displays results including ratings!

    Thanks

    Thread Starter masspamak

    (@masspamak)

    Hello,

    actually my code looks like this, i’ve modified it so all rating meta are -should be- empty:

    // Google Rich Snippet
    	if((is_single() || is_page()) && $is_main_loop)
    	{
    		if(!isset($post_excerpt))
    			$post_excerpt = ratings_post_excerpt($post_id, $post->post_excerpt, $post->post_content, $post->post_password);
    
    		$post_meta = '<meta itemprop="" content="'.esc_attr($post_title).'" /><meta itemprop="" content="'.$post_link.'" />';
    		$ratings_meta = '<div style="display: none; visibility:hidden;" itemprop="" itemscope itemtype="">';
    		$ratings_meta .= '</div>';
    
    		$value = $value.$post_meta.$ratings_meta;
    	}

    so i will try to /**/ it and see what google will look at then ??

    thanks for your help
    Mass

    Thread Starter masspamak

    (@masspamak)

    Hello, thanks for your reply,

    wp-postratings.php has a // Google Rich Snippet code in it so google is, in fact, displaying what the plugin tell him to display. I tested it with the test preview on google and google read it, adding an option to completely turn off this should be really nice and make your plugin a 5 stars rating for sure.

    Thanks for your time
    Mass

    masspamak

    (@masspamak)

    You can try this:

    backup the file wordpress-popular-posts.php
    then open it (on server side) and cut all

    {$title}

    you’ll find in the file, save it and refresh you page, titles will not appear anymore

    by doing this you disable the call function that show title in both thumbnails and permalinks, you have to repeat this as soon you will update your plugin

    tested on version 2.3.7 and it works

    masspamak

    (@masspamak)

    if you use a template tag you may add the minus sign before the category number

    cat=’1, -2, -3′

    this will call the popular posts in category 1 and exclude popular posts from category 2 and 3

    masspamak

    (@masspamak)

    I permanently removed the titles and text formated stuff around the popular thumbnails this way, first, backup the wordpress-popular-posts.php and wpp.css files.

    Then open wordpress-popular-posts.php and edit the line (around line 1234) adding:

    class=”hideme”

    in the A tag

    so the line then should look something like this

    ‘title’ => ‘<a class=”hideme” href=”‘.$permalink.'”

    then update your wpp.css file by adding this code

    a.hideme {
    display: none;
    visibility: hidden;
    }

    This way you may have only thumbnails and no more any links around it. You will have to repeat this change as soon you will update your plugin.

Viewing 15 replies - 1 through 15 (of 32 total)