Skalibur1
Forum Replies Created
-
Forum: Plugins
In reply to: [Sidebar Login] Hide sidebar login when disconnected?The same question.
Can anybody write the complete code for this function?
Thanks!!!Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Suscribe to my Own post? How?Thanks for you fast response.
I followed all your instructions and I found the problem!!!
Case 1:
When the users do a post from /wp-admin/post-new.php the Subscribe To Comments Reloaded works fine and the auhor recive the email notification to new comments if it is enabled…. ALL OK!! I receive a 2nd WP alert email from “Email me whenever” general WP setting if is enabled too.Case 2
But if the user do a new post from the frontEnd plugin “WP User Frontend” https://www.ads-software.com/extend/plugins/wp-user-frontend/ 1.1 version ( the last ) from his custom newpost page, the Comment Reloaded dont work for the author post ( dont works the Subscribe authors automatic ).I recive just 1 email from WP general setting “Email me whenever: Anyone posts a comment”, but not from Subscribe To Comments Reloaded plugin with his custom text ( I should recibe 2 emails like the case 1 )
For some reason there is an inconsistency between this frontend plugin and Subscribe To Comments Reloaded .
Can you guide me with some advice?
Thanks for the support and sorry for my unrefined english ( I from spain ).note: Are you the author plugin? ??
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Suscribe to my Own post? How?Ren V
I followed your instructions and I activated it ” Automatically subscribe authors to their own articles” and dont work.The rest of the plugin works very well, but just the “Automatically subscribe authors to their own articles” dont work.
I tested it with new users and new post.
site: https://www.dientesblancos.com/muro
Wordpresss 3.5.1
PLugin 2.0.2Can you help me?
BEst Regards!!!
SergioForum: Plugins
In reply to: [Subscribe To Comments Reloaded] Suscribe to my Own post? How?Thanks for the support!!
Topic closedI come back to 4.0.1 version and Works OK.
I will dont update to 4.5I havent time to resolve new incidents.
Thanks for the support.
Topic closed.
Forum: Plugins
In reply to: [WordPress Social Login] Redirecting to homepage after login instead to curlMiled: Can you write us a reload or “actual page” link code to put in the “redirect url” form?
Best Regards for the support
Forum: Plugins
In reply to: [WordPress Social Login] Redirecting to homepage after login instead to curlHI Miled:
Impossible to erase the redirect URL,,, Is possible change it,, but no erase ??
I erased the plugin and re install it 2 times, I delete browser cookies,etc.
??
Forum: Plugins
In reply to: [Social Login] My ID and Avatar at Widget place after login???Thanks!
I found that I was lookinf for.
Thanks for share information!
I am also interested!!!!!
Forum: Plugins
In reply to: [Social Login] My ID and Avatar at Widget place after login???No answers?
I want to know how to put the avatar/profile in the header when I am login in.
See the screenshoot https://img203.imageshack.us/img203/5374/avatarbli.jpg
Thanks
The Tareq code Work well to me. I put redirect to my Category name ??
Thanks Tareq!!
/*** * Change the direction url * * @uses <code>wpuf_after_post_redirect</code> filter hook * * @param string $url the redirection url * return string new redirect url */ function wpufe_force_redirection( $url ) { return home_url('../categoryname/'); } add_filter( 'wpuf_after_post_redirect', 'wpufe_force_redirection' );
Thanks for the response.
I found that I was lookin for.Best regards
CloseThanks for the support Tareq
Forum: Fixing WordPress
In reply to: Create Post From Social Account?The response from Khoatri94 meake bad this forum.. Whay people post if they havent idea??? Your link is broken!!
I looking for the same plugin than BandonHass…..
Any suggest???
BEst Regards
Forum: Fixing WordPress
In reply to: Need help with a code for a different logo for each categoryVery Good Mr Aclhymyth
I will put the full code That I am running
<?php if ( is_single() && in_category( 1 ) || is_category( 1 ) ) $logo_image = 'logo_cat1.png'; else $logo_image = 'logo_cat1.png';?> <?php if ( is_single() && in_category( 6 ) || is_category( 6 ) ) $logo_image = 'logo_cat6.png';?> <a id="omc-logo" href="<?php echo home_url();?>"><img src="https://www.dientesblancos.com/muro/wp-content/themes/pinboard/<?php echo $logo_image;?>" alt="<?php bloginfo('name');?> logo" <?php if ($omc_logo_image === NULL) { echo('height="96"'); }?> /></a>
Note that I removed
else $logo_image = 'logo_cat1.png';?>
for the cat 6 becouse the main logo of the site is logo_cat1.png in this example.