[resolved] Future Request

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: [resolved] Future Request

Re: [resolved] Future Request

by Lantern » Fri Mar 31, 2017 2:57 pm

#goodjob

Re: Future Request

by kaspir » Fri Mar 31, 2017 7:17 am

axew3 wrote: Thu Mar 30, 2017 7:10 pm @kaspir, we can start to think to add you someday to come to contributors at wp.org, and moderator here?! :o :idea:
no obligations of course. just a more free way to manage things here for you if you need.
That was unexpected, sometimes contributing is the best way to make friends! :)

I hardly know a lot, much I taught myself over the years. Somewhere along the way, I learned it helps to give back, even when your wrong because then someone may have a correction for you, or you actually contribute something useful and they are thankful. Whenever I feel something can be useful to others, I post it. Techniques like this can also be useful to your own SEO ranking as you begin to create back links to your own sites, especially great when they are on topic!

But I appreciate the gesture! Recently, I been teaching myself, understanding of how phpBB extensions work. I am in the beginning stages I believe still of rebuilding ones I select, and then adding my own twists etc. This is how I learned many things. So far, I have re-written a few of my own extensions, found here if anyone interested. Having shared all that, I think I'm far away from adding any WP plugins! :P


EDIT: Should mark this topic as resolved here in this post: viewtopic.php?p=1713#p1713
Please post another topic for any new requests.

Re: Future Request

by axew3 » Thu Mar 30, 2017 7:10 pm

@kaspir, we can start to think to add you someday to come to contributors at wp.org, and moderator here?! :o :idea:
no obligations of course. just a more free way to manage things here for you if you need.

yes this also need to be fixed and added!

also another fix needed is NOT SCROLL topic on smiley click.

Re: Future Request

by kaspir » Thu Mar 30, 2017 5:23 am

Nice! I just threw that new line in mine! Edited it to this if anyone interested,

Code: Select all

echo '<li class="alignleft"><a href="'.$w3all_url_to_cms.'/ucp.php?i=ucp_main&mode=subscribed" title="Visit my subscriptions" alt="">' . get_avatar(get_current_user_id(), 70) . '</a></li>';
Now links avatar to user's forum subscriptions, or anything you want to make it. The end number, '70' is to adjust size of avatar img. Also NOTE: that the alt="" even though blank, must be there to be HTML5 compliant.

Re: Future Request

by axew3 » Wed Mar 29, 2017 11:38 pm

p.s to add avatar into login widget, it is necessary to add just this:

Code: Select all

echo '<li>' . get_avatar(get_current_user_id()) . '</li>'; 
after line

Code: Select all

echo '<ul class="" style="list-style:none;margin:auto auto auto 0px">';
on file views/login_form_include_iframe_mode_links.php
OR
views/login_form_include_noiframe_mode_links.php

by the way on next version the entire code about this will be replaced by the new corrected one.

Re: Future Request

by axew3 » Wed Mar 29, 2017 7:54 am

didn't read this sorry ... yes exactly, you can apply both id or class to an element, the difference is that an id can be applied only to one single element, while classes can be applied to any instance of any element on page. I imagine you should have resolve, or not?
But on next version 1.6.7 if possible, 1.6.8 at max, the above will be possible to be done into config page, so at update you do not need more to apply any time these changes directly into phpbb_last_topics.php file.
The <table> and all elements inside will be moved inside <li> widget elements to be exactly as WP code on widgets is.
And all should result so working perfect on any theme that use default WP structure. If needed, you'll apply same class to ul or li element, but on wp_w3all config, where will be available fields settings about, to avoid the above explained about re-apply css changes into last topics file at any plugin update.

Top