herold
Forum Replies Created
-
Forum: Plugins
In reply to: [Secondary Title] Performance IssueIt’s a theme problem as I have a special glossary on the front page.
Forum: Plugins
In reply to: [Secondary Title] Performance IssueThe issue is only with the frontpage. It looks like it goes through all terms twice. That’s how I get 660 queries. I have a fix right now in the one of the include files, but it is only a temp solution.
if($_SERVER[REQUEST_URI] == "/") { return false; }
Forum: Plugins
In reply to: [CDN Enabler] HTTPS reqrite does not workHas been resolved – simply forgot to check the box in the plugin for https connection.
Forum: Plugins
In reply to: [CDN Enabler] HTTPS reqrite does not workSame issue here!
Just switched over to SSL and the plugin refuses to rewrite the CDN address, which was working fine before.Forum: Plugins
In reply to: [Content Aware Sidebars - Fastest Widget Area Plugin] Pods Integration?That’s awesome news Joachim! I will grab the code and do some testing. Scott will be very happy to see this included in the plugin.
Forum: Plugins
In reply to: [Content Aware Sidebars - Fastest Widget Area Plugin] Pods Integration?Hello Joachim,
Thank you for following up. Please get in touch with Scott – the lead developer from pods. I am sure he will work out something with your help.
Forum: Plugins
In reply to: [Content Aware Sidebars - Fastest Widget Area Plugin] Pods Integration?Of course, the pods integration is only necessary for Advanced Content Type pods – as they are outside of the scope of WordPress.
By the way this code below checks if the pods plugin is installed…
// Get PodsAPI
$api = pods_api();Forum: Plugins
In reply to: [Content Aware Sidebars - Fastest Widget Area Plugin] Pods Integration?It’s a while ago I hacked this together…customized for one of my pods.
Forum: Plugins
In reply to: [Content Aware Sidebars - Fastest Widget Area Plugin] Pods Integration?Great Scott! I will test this out later on today. By the way here is the module I created for the version before 3.0 of the sidebar plugin. Maybe it’s of any use to help create a module for version 3 and beyond.
<?php /** * @package Content Aware Sidebars * @author Joachim Jensen <[email protected]> */ /** * * Pods Module * * Detects if current content is: * a) any or specific pods pages * */ class CASModule_pods extends CASModule { /** * Constructor */ public function __construct() { parent::__construct('pods',__('Pods Pages',ContentAwareSidebars::DOMAIN)); $this->type_display = false; //$this->id = 'pods'; } /** * Get pods pages * @return array */ protected function _get_content($args = array()) { if (function_exists('pods_api')) { // Get PodsAPI $api = pods_api(); // Get Pod Pages $pod_pages = $api->load_pages(); $pod_page_list = array(); foreach ( $pod_pages as $pod_page ) { $pod_page_list[$pod_page[ 'slug' ]] = $pod_page[ 'name' ]; } } return $pod_page_list; } public function in_context() { return is_pod_page(); } public function get_context_data() { $val = 'principles'; //$pod_page = is_pod_page(); //return $pod_page; return array($val); } }
Also my 404 static page sidebar won’t work. Any ideas about that?
I mean Condition Groups. First I added it to the Condition Groups I got with two other pages in it. That did not work. Then I added it to a separate Condition Group, but it did not work either. I am assuming your plugin works with Custom Post Types. Maybe not when it is created by the pods plugin.
Forum: Plugins
In reply to: [Admin Menu Editor] Deactivating Settings – Menu Editor Pro MenuYou may want to think about including this feature in your plugin.
Forum: Plugins
In reply to: [Admin Menu Editor] Deactivating Settings – Menu Editor Pro MenuYes, that’s what I was looking for. I actually found a script that I adapted and put it into the functions file.
Forum: Plugins
In reply to: [Admin Menu Editor] Deactivating Settings – Menu Editor Pro MenuThank you for the quick reply. The settings option worked! Now I still have to find an easy way to disable the menus in the admin bar. Any ideas?
Forum: Plugins
In reply to: [WP Session Manager] Varnish Dynamic Cache ConflictI do have 2 ideas about this:
– possible to activate session management only on certain pages. For example I am using it only on my products and checkout page.
– include the session management files separately (without a plugin).