John Gardner
Forum Replies Created
-
Forum: Plugins
In reply to: [Arconix Shortcodes] Does not work after https:// upgrade…I gave you bad info. Try the following for line 107
'url' => $this->url . 'includes/jquery.tools.min.js',
Forum: Plugins
In reply to: [Arconix Shortcodes] Does not work after https:// upgrade…Hi Karin,
The console is telling you the site couldn’t find arconix-shortcodes.min.js. Can you send the link for the specific page where the accordions aren’t working? That will hopefully help me figure out how to fix the issue.
Forum: Plugins
In reply to: [Arconix Shortcodes] Does not work after https:// upgrade…Hi Karin,
That’s not good. Unfortunately I can’t help much with the theme crashing, but while I don’t recommend it, in this case you can edit the plugin files to change the url.
If you change line 107 of
plugin.php
to the following:'url' => plugins_url() . '/arconix-shortcodes/includes/jquery.tools.min.js',
it will have the same effect as the code I gave you previously without the side effect of crashing your theme.
- This reply was modified 8 years, 1 month ago by John Gardner.
Forum: Plugins
In reply to: [Arconix Shortcodes] Does not work after https:// upgrade…Hi,
Thanks for using my plugin. The update to v4.7.2 is unrelated. I use a 3rd party service to host the javascript that powers my plugin. Unfortunately they do not have a https version of their CDN.
To resolve this issue add the following to your theme’s
functions.php
file:add_filter( 'arconix_jquerytools_reg', 'my_jquerytools_reg' ); function my_jquerytools_reg( $args ) { $args['url'] = plugins_url() . '/arconix-shortcodes/includes/jquery.tools.min.js'; return $args; }
thanks
Forum: Plugins
In reply to: [Arconix FAQ] [Problem] displaying faq’s double/twiceAh, ok… I know that the only way to display the FAQs more than once is to call the shortcodes multiple times. I’m guessing that WPML must be calling the shortcodes for each page translation, regardless as to whether it’s necessary for display, though I can’t say for certain as I don’t have any experience with WPML. Perhaps you’d have better luck asking their support?
Forum: Plugins
In reply to: [Arconix Shortcodes] Can’t specify accordion higher than 5 to openHi Karen,
Thanks for using my plugin. I only provided default javascript support for up to the first 5 tabs opening, as you found. You can see what I’m doing here: https://github.com/j-gardner/arconix-shortcodes/blob/master/includes/arconix-shortcodes.js#L62
If you feel comfortable doing so, you can copy /includes/arconix-shortcodes.js from my plugin folder to the root of your theme folder and add the following line beneath the last line in that file:
jQuery('.arconix-accordions-6').tabs('div.arconix-accordion-content', {tabs: 'div.arconix-accordion-title', effect: 'slide', initialIndex: 5 });
Doing so will set the 6th accordion to load open. Repeat these lines, changing the numbers as desired to support additional open accordions.
Forum: Plugins
In reply to: [Arconix FAQ] [Problem] displaying faq’s double/twiceHi Patrick,
Thanks for the kind words. Unfortunately I can’t tell anything from the html on that page. Can you provide me the shortcodes you’re using on that page?
Thanks
Forum: Plugins
In reply to: [Arconix FAQ] ID (anchor) generationHi,
Thanks for using my plugin and I apologize for the delay. Unfortunately my subscription to notifications for new topics isn’t working. The source code repository for the next version is here: https://github.com/j-gardner/arconix-faq/tree/v1.7.0
Forum: Plugins
In reply to: [Arconix FAQ] Shortcode attribute to hide the title?Hi,
Thanks for using my plugin. In v1.7.0 there will be a shortcode option to hide the title. Collapsing the groups is something I’ll have to investigate.
Forum: Plugins
In reply to: [Arconix Shortcodes] Plugin no workHi,
Thanks for using my plugin. There is no button for putting the shortcodes in the editor – you insert them manually. There should be a shortcode list box to the right or beneath the editor and you can also refer to the Shortcode Reference page of the plugin’s documentation.
Forum: Plugins
In reply to: [Arconix FAQ] Is this plugin still maintained?Hi Marcelo,
While abandoned is a strong word, the pace of development has certainly slowed. I am in the process of working on v1.7.0 which you can see on GitHub.
Edit: Yes, my plugin works with PHP7
- This reply was modified 8 years, 2 months ago by John Gardner.
Forum: Plugins
In reply to: [Arconix Shortcodes] It doesn’t work in 4.7Should I remove it until you have a verified version?
I haven’t updated the readme but the plugin does work fine with version 4.7 of WordPress. My demo site is also running 4.7 without issue.
I couldn’t see on your specific page where the accordions were located, though I did notice that I was getting a 404 error (missing file) for jquery.js
Failed to load resource: the server responded with a status of 404 (Not Found) https://s0.wp.com/wp-includes/js/jquery/jquery.js?ver=20160429
Without seeing my accordions not work on your site I can’t confirm it but it’s likely that missing file is preventing my plugin from working.
Hi,
Thanks for using my plugin. The shortcode you want to use is
[ac-flexslider]
. Is that what you were using?Forum: Plugins
In reply to: [Arconix Shortcodes] It doesn’t work in 4.7I apologize but are you still experiencing the issue? When I went to that page and clicked the toggle it opened and closed like I would expect it to.
Forum: Plugins
In reply to: [Arconix Shortcodes] It doesn’t work in 4.7Hi,
I’ve updated my demo site to 4.7 and have not noticed any issues. What exact problem are you running into?
Edit: Do you have a link to a site where you’re having this problem?
- This reply was modified 8 years, 3 months ago by John Gardner.