Title: Avf's Replies | WordPress.org

---

# Avf

  [  ](https://wordpress.org/support/users/avf/)

 *   [Profile](https://wordpress.org/support/users/avf/)
 *   [Topics Started](https://wordpress.org/support/users/avf/topics/)
 *   [Replies Created](https://wordpress.org/support/users/avf/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/avf/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/avf/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/avf/engagements/)
 *   [Favorites](https://wordpress.org/support/users/avf/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share, Social Login and Social Comments Plugin - Super Socializer] User can’t recreate account](https://wordpress.org/support/topic/user-cant-recreate-account/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [7 years, 5 months ago](https://wordpress.org/support/topic/user-cant-recreate-account/#post-11090555)
 * Thanks for your reply. an image won’t help, as nothing happens that could be 
   registered in an image. I will describe the issue in detail:
 * 1. User creates an account using Super Socializer login. Super Socializer logs
   the user in and everything looks fine;
    2. User (or wp Admin) excludes her wp
   account; 3. User comes back to register an account in the same website. 4. User
   clicks Social Socializer fb icon as in number 1 above; 5. Fb window pops up for
   a few seconds and closes; 6. New account is not created, user is not loggedin.
 * I.e., if a user creates an account with social login and deletes the same account,
   she won’t be able to register another account using social login as before.
    
   I tried the user removing application access from inside facebook, but no luck,
   so I suppose Super Socializer saves user login information to the db, information
   that is not deleted upon user account exclusion.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Importing pipe issue](https://wordpress.org/support/topic/importing-pipe-issue/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/importing-pipe-issue/#post-10966478)
 * Fixed, it was a problem caused by a custom filter in theme functions.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Combine processor not replacing](https://wordpress.org/support/topic/combine-processor-not-replacing/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/combine-processor-not-replacing/#post-9180667)
 * It works now with the fix. Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] How to insert Read More](https://wordpress.org/support/topic/how-to-insert-read-more/)
 *  [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-insert-read-more/#post-9168863)
 * For what I understand, combine only works with “po”s, not “so”s or “pi”s. However
   you can use a processor to bypass title and use its po.
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Combine processor not replacing](https://wordpress.org/support/topic/combine-processor-not-replacing/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/combine-processor-not-replacing/#post-9168812)
 * It seems this code
 *     ```
       preg_match('/(?<=\[).*?(?=\])/i', $seperate_array[0], $result);
       if(isset($data->no_need['op'][$result[0]]->$seperate_array[1])){
       	$inputs[$matches[0][$key]] = $data->no_need['op'][$result[0]]->$seperate_array[1];
       }
       ```
   
 * is not compatible with php7.
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] How to insert Read More](https://wordpress.org/support/topic/how-to-insert-read-more/)
 *  [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/how-to-insert-read-more/#post-9168375)
 * That’s a theme issue, but you can try a plugin to create excerpts.
    Other than
   that, it’s just a matter of finding the right theme, one that creates excerpts
   automatically, or uses description as excerpt/resume.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Combine processor not replacing](https://wordpress.org/support/topic/combine-processor-not-replacing/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/combine-processor-not-replacing/#post-9168185)
 * Thanks!
    Ok, debugging that file, I get the following error for each tag that
   should be replaced:
 * “Notice: Array to string conversion in /wp-content/plugins/wp-pipes/plugins/processors/
   combine/combine.php on line 37”
 * Line 37 is
    `if(isset($data->no_need['op'][$result[0]]->$seperate_array[1])){`
 * Any idea on what’s going on?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Combine processor not replacing](https://wordpress.org/support/topic/combine-processor-not-replacing/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/combine-processor-not-replacing/#post-9163515)
 * Thanks for your reply.
    That’s very interesting, even without pi it doesn’t work.
   All requirements are satisfied, however we are running php 7. Can you please 
   provide more information on the technical side of this processor, so we can know
   where to debug? Maybe the php file where the processor is. I’m thinking it could
   be an opcache issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Combine processor not replacing](https://wordpress.org/support/topic/combine-processor-not-replacing/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/combine-processor-not-replacing/#post-9161200)
 * WP version 4.7.5
    WP-Pipes version 1.25. I created a test pipe, you can download
   it from [https://1drv.ms/u/s!Aiveo2dI6XKtoWZ9LKi60ugRj4Aw](https://1drv.ms/u/s!Aiveo2dI6XKtoWZ9LKi60ugRj4Aw).
   I’ve never got the combine processor to work, for some reason (maybe a php mod
   missing from my server?). You can check the feed created by the pipe at [https://www.fontoura.com/feeds/testing.rss](https://www.fontoura.com/feeds/testing.rss)
   and notice the description is not correct, as below:
 *     ```
       		<item>
       			<title>Auditores fiscais entram em greve e fazem operação padrão nas aduanas</title>
       			<link>https://www.fontoura.com/noticias/fontes/agencia-brasil/auditores-fiscais-entram-em-greve-e-fazem-operacao-padrao-nas-aduanas/</link>
       			<description>{po[0] html}: {pi[1] html}
       {po[1] introtext}</description>
       			<dc:creator>25458156c5222d74956599335c97200e</dc:creator>
       			<guid isPermaLink="false">https://www.fontoura.com/noticias/fontes/agencia-brasil/auditores-fiscais-entram-em-greve-e-fazem-operacao-padrao-nas-aduanas/</guid>
       		</item>
       ```
   
 * Thanks again.
    Regards
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Pipes] Weird “bug” with images](https://wordpress.org/support/topic/weird-bug-with-images/)
 *  Thread Starter [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/weird-bug-with-images/#post-9160014)
 * That explains the issue.
    Knowing how it works, maybe I can use the draft option
   and create a filter to publish posts from draft after a few seconds. Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Microblog Poster - Auto Publish on Social Media] Main photo did not show up on facebook (sometimes)](https://wordpress.org/support/topic/main-photo-did-not-show-up-on-facebook-sometimes/)
 *  [Avf](https://wordpress.org/support/users/avf/)
 * (@avf)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/main-photo-did-not-show-up-on-facebook-sometimes/#post-9150625)
 * I’m experiencing the same issue, even though all posts have featured images. 
   The same happen to twitter posts. When I go to twitter card validator or fb Sharing
   Debugger and paste the url, the picture loads fine. Actually when a post is published
   by microblogger, Sharing Debugger says there is no og:image tag. I then scrape
   the page again ([https://developers.facebook.com/tools/debug/sharing/](https://developers.facebook.com/tools/debug/sharing/)),
   it loads all og tags fine, showing the image.
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).
    -  This reply was modified 9 years, 1 month ago by [Avf](https://wordpress.org/support/users/avf/).

Viewing 11 replies - 1 through 11 (of 11 total)