Forum Replies Created
-
AuthorPosts
-
Steven Zahm
Keymaster@ Brian
Great!
If you have a moment, I would truly appreciate a review as they really do make a difference. Many thanks in advance!
http://wordpress.org/support/view/plugin-reviews/connectionsSteven Zahm
KeymasterI’m unable to edit the template plugin file to to it being unwritable, please change this:
public function __construct( $template ) { self::$template = $template; $template->part( array( 'tag' => 'card', 'type' => 'file', 'path' => $template->getPath() . 'card.php' ) ); $template->part( array( 'tag' => 'card_single', 'type' => 'file', 'path' => $template->getPath() . 'card-single.php' ) ); $template->part( array( 'tag' => 'js', 'type' => 'action', 'callback' => array( __CLASS__, 'enqueueJS' ) ) ); if ( ! is_admin() ) { // Enqueue the frontend scripts and CSS. add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueueCSS' ) ); // Update the permitted shortcode attribute the user may use and override the template defaults as needed. add_filter( 'cn_list_atts_permitted-' . $template->getSlug() , array( __CLASS__, 'initShortcodeAtts') ); add_filter( 'cn_list_atts-' . $template->getSlug() , array( __CLASS__, 'initTemplateOptions') ); } }to this:
public function __construct( $template ) { self::$template = $template; $template->part( array( 'tag' => 'card', 'type' => 'file', 'path' => $template->getPath() . 'card.php' ) ); $template->part( array( 'tag' => 'card_single', 'type' => 'file', 'path' => $template->getPath() . 'card-single.php' ) ); // $template->part( array( 'tag' => 'js', 'type' => 'action', 'callback' => array( __CLASS__, 'enqueueJS' ) ) ); if ( ! is_admin() ) { // Enqueue the frontend scripts and CSS. add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueueCSS' ) ); add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueueJS' ) ); // Update the permitted shortcode attribute the user may use and override the template defaults as needed. add_filter( 'cn_list_atts_permitted-' . $template->getSlug() , array( __CLASS__, 'initShortcodeAtts') ); add_filter( 'cn_list_atts-' . $template->getSlug() , array( __CLASS__, 'initTemplateOptions') ); } }The file can be found here:
../wp-content/plugins/connections-cmap/cmap.phpSteven Zahm
Keymaster@ Brian
I attached the simple template to this post … I just happened to have one “laying” around. You’ll have to work out the CSS though. Hope that helps.
Attachments:
You must be logged in to view attached files.Steven Zahm
Keymaster@ Regine
Understood. I’ll take a look and see if there is another solution without touching plugins or the theme.
I just did try to login, but the user/pass failed.
Steven Zahm
Keymaster@ Regine
Generally this error is caused due to either an error within the theme’s or another plugin’s JavaScript. Try deactivating all other plugins and change the theme back to the default, temporarily, to see if the issue resolves itself. I’d have to be able to see the page to offer more precise solution.
Steven Zahm
Keymaster@ Jeremy
No, they are the exact same version and there have been no updates since then. What is the exact shortcode you’re using on that page?
Steven Zahm
Keymaster@ Lars
Oh, If you code this, send it my way … I see it it can be included or something.
Steven Zahm
KeymasterSteven Zahm
Keymaster@ Larissa
Sorry, no, there is not … however, please check your email> I emailed an unreleased extension.
Steven Zahm
Keymaster@ Timothy
128 should be more than sufficient in most cases. Ther is a slightly newer version of Excerpt Plus; version 1.0.3. That only had a few minor bug fixes. What version of the Widget Pack?
Also, did you try deactivating all other plugins, besides the Connections related ones to see if there is an unknown conflict?
-
AuthorPosts
