solutionstriware.ca
Forum Replies Created
-
I’ll make this as resolved, but the pagination was under listing for each agent, I may have forgotten to mention that part of it. I’ve reverted back to a custom solution that was build for this plugin that worked for us.
The issue was either an over-filter on the results or the data was dropped somewhere along the line with the Query string from the url.Turns out, we had generated a custom solution to combat this situation and have reverted to our previous code. Sorry for the confusion, my other posts will be marked as resolved also.
I was looking into the plugin and the reason the plain-text occurred, was due to updating the plugin, which dropped the files relating to the premium features. The premium feature in question, being “real estate agents”, which filters listings by agent and allows for agent profiles. Even after clicking the “Check Updates” button on the site under the Settings/Main page, it wasn’t re-added, though I did have the latest version (the admin feature was the only feature re-added)
To sum up, the update wasn’t the cause for functionality to be broken however, pagination and agent filtering is still an issue. Code-wise, the Query string that’s created by accessing another page via pagination causes this link http://triwarebeta.ca/coldwell/agent-listings/?agent_id=51 to go to http://triwarebeta.ca/coldwell/agent-listings/?agent_id=51#/requested_page=2&sort_order=DESC&sort_by=menu_order&i=1, in which case I noticed that the query string was ignored and the filter returned 0 data matches for an agent (but still the total listings associated with that agent)
Hopefully this is more than enough info to get a better handle of my situation. The link is below for our Agents page:
http://triwarebeta.ca/coldwell/agents/I followed the instructions from my hosting and upgraded to 5.4 with no luck, I get the same situation as I mentioned previously
Forum: Plugins
In reply to: [WP-Polls] Results for admins onlyHey guys,
I found a solution in case anyone looks at this topic and is wondering how to do it.
In the wp-polls.php find the following code: return $temp_pollresult;
And replace it with:
if ( is_super_admin() )
{return $temp_pollresult;} else {return “Test”;}Where “Test” is whatever you want the results form to say to none admin users.
What I did then was create a private page and displayed all my polls results on that page.
Forum: Plugins
In reply to: [WP-Polls] Results for admins onlyIt’s because I had the results template removed because users should not be able to see the results when they vote.
Is there anyway to hide results from all users in the system expect for admins?