astereo
Forum Replies Created
-
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Gmail attachment sizeHi all,
Bumping this old post because I just began experiencing this issue as well. I tried to add the custom header to the postman settings that’s mentioned in that SO link (Content-type: multipart/related; boundary=\”part_boundary\”0, but it did not seem make a difference.
Any ideas? Much appreciated!
Forum: Plugins
In reply to: [Ultimate WP Query Search Filter] Filtering AJAX ResultsHi,
Yes — I am aware that the result filtering for post ordering can be set in the options panel for the plugin, although it has no seemed to have any affect regardless of what I order by in the settings — which is why I then use the query_args filter to try testing to see whether or not that made a difference either. In both the settings panel or via the filter, the post per page settings stick just fine — by the order parameter seems to have no affect on AJAX results.
Now that I know I can use a different search results template (thanks for the link!) it’s not as critical of an issue for me, but it would still be nice if I could get the AJAX results loading correctly.
As for where the posts_orderby_lastname function. In a standard query loop, I would use add_filter to before the query starts to apply the lastname function, and then proceeding posts would be ordered accordingly. I tried applying that same process to the uwpqsf_result_tempt filter, and place the filter for posts_orderby directly before the $query
add_filter(‘uwpqsf_result_tempt’, ‘customize_output’, ”, 4);
function customize_output($results , $arg, $id, $getdata ){
// The Query
$apiclass = new uwpqsfprocess();
add_filter( ‘posts_orderby’ , ‘posts_orderby_lastname’ );
$query = new WP_Query( $arg );ob_start(); $result = ”;
// The Loopif ( $query->have_posts() ) {
echo ‘<div class=”allresults”>’;
$i = 0;
while ( $query->have_posts() ) {
$query->the_post();
$i++;but the post order remains the same.
Here are two screenshots as well that show results after filtering with different order by options set in the settings panel, just so you know I’m not crazy ??
Random Order setting
Date setting(might need to reload your browser on click of those urls, because my domain has hotlinking disabled)
Forum: Plugins
In reply to: [BuddyPress Docs] 1.3 Template BugWas just about to post that I saw the note in the theme-bridge file. Thanks for hoping right on it and beating me to it though ??
thanks for the version update as well!
Forum: Plugins
In reply to: [CollabPress] Altering Project URL for Search ResultsSeems to work perfectly!
Thank you!
Forum: Themes and Templates
In reply to: Looking for a minimal themeIf you’re alright dipping into the “paid” waters, take a look at https://stuffimmaking.com/downloads/work-reel. It’s a very minimal bare-bones responsive theme that provides a great base, or can simply be used as it out of the box. There are some minor customization options in a backend panel as well.
Forum: Your WordPress
In reply to: Responsive PortfolioWould love for some more comments (or work :))
Forum: Your WordPress
In reply to: Responsive PortfolioThanks for the kind words!
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Slimstat Dash Widgets – JS IssueSorry I wasn’t on yesterday or I would have helped you test. Just installed the update and everything works perfectly.
Thank you!
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Slimstat Dash Widgets – JS IssueDoesn’t seem to happen anywhere else other than the dashboard home screen, and again, the error and flyouts / drawers not opening only occurs when the widgets are activated.
Thanks, and thanks for the awesome support ??
Forum: Plugins
In reply to: [SlimStat Analytics] [Plugin: WP SlimStat] Slimstat Dash Widgets – JS IssueI’ve installed the plugin on another server with the same plugins and the widgets work fine. I get one js issue while on the dashboard home screen on the site it is not working on:
jQuery("#more-dialog").dialog is not a function
which points to this area in slimstat.admin.js:
open: function(){ jQuery('.ui-widget-overlay').bind('click',function(){ jQuery('#more-dialog').dialog('close'); }) }, resizable : false, width : '760'
but it does not appear on the test site it is fine on. Both are 3.4 installs with 2.8.1. I re-uploaded 2.8.1. to see if it would do anything but still nothing
My “Right Now” is also blank, and has been since I updated yesterday even though Spy View lists items. I installed the plugin on another site and right now works as it is supposed to, as well as the dashboard widgets (see other post).
I have the same plugins installed on both servers. One site (the one not working) has a large slimstat database while the other is a fresh install
Forum: Plugins
In reply to: [DB Cache Reloaded Fix] [Plugin: DB Cache Reloaded Fix] Cron OverloadI would love for this issue to be fixed / changed. I found with my personal site that using this plugin + cloudflare gives me awesome results (load time usually <= 1s), but I do not want to tax my shared server. I also would really like to implement this into my universities network, but being they are a multi-site install I would not try it until these cron issues are taken care of.
Thank you!
Forum: Alpha/Beta/RC
In reply to: WordPress 2.7 beta 3 extremely slow backendwhat version of php / apache is your server/host currently on?
There’s an open ticket for the slow dashboard here, but we’re still trying to help narrow down where the issue is coming from. Right now it seems to be mainly affecting Apache: 2.2.9 and/or PHP: 5.2.6.Forum: Alpha/Beta/RC
In reply to: Slow dashboard 2.7 betaEveryone, please contribute to the open ticket if you can to help try to narrow down the issue:
https://trac.www.ads-software.com/ticket/8229
Thanks!
Forum: Alpha/Beta/RC
In reply to: Slow dashboard 2.7 betaI have made a ticket. Check a few posts up.