cubecolour
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabby Responsive Tabs] First tab is blankThis issue can arise if the shortcode is malformed where the opening and closing quotes around the title do not match, for example if the first tabby shortcode was incorrectly added as:
[tabby title='Intro"]Please check your shortcode and retype it if necessary.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Accessibility Fixes NeededI have been working on a new version of the plugin with an all new code base. The aims for the new version in addition to addressing accessibility requirements were to be as lightweight as possible and use vanilla javascript rather than relying on jQuery. I currently have a version working which uses no javascript at all, although I will need to add some javascript to add in aria support.
The new version is a work in progress and it is a lot of work to ensure feature parity and backwards compatibility with the existing version of the plugin, so any donation would be gratefully received.
It would be very helpful if you would be able to test the new version to help with ensuring that accessibility needs are met. Please contact me via the contact form on cubecolour.co.uk if you are able to help with testing.
Forum: Plugins
In reply to: [Nested Ordered Lists] Issue with spacing between Nested Order levelsThis appears to be a result of the following CSS rule in one of your inline stylesheets:
#left-area ol li ul,.entry-content ol li ol,
.et-l--body ol li ol,
.et-l--footer ol li ol,
.et-l--header ol li ol {
padding:2px 0 2px 35px;
}Either find what is adding this so you can change the padding value, or override the rule with custom values by adding a new CSS rule with higher specificity targetting the same elements with vertical padding values of 0 or other appropriate value(s).
Forum: Plugins
In reply to: [Audio Album] Audio is not playing for more than 59 seconds?I had a look at your page and was not able to reproduce the issue. I viewed the page using firefox on macos.
Does the issue occur for you on other browsers and/or devices?
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Accessibility Fixes NeededThank you for your suggestions. I will look into this when resources allow
The preloading animation that comes with the plugin can be hidden by adding the following CSS rule to your custom styles:
.track { background-image: none!important; }note: this will only prevent the animation from being seen; it will not speed up the page load.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Compatible with Latest WordPress Version?Yes – it works perfectly
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Link from a tab to another tab?All of the documentation you need, including examples, is in the readme.txt file of the add-on. It is against the forum guidelines to provide support for the add-on here, so if you purchased it within the last twelve months, you are entitled to email support via the contact form on the cubecolour website.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Link from a tab to another tab?Tabby Responsive tabs can be made to do this if you also have the optional tabby link to tab add-on plugin installed. There’s a demo of this at https://michaelatkins.co.uk/tabby-link-to-tab/
Forum: Plugins
In reply to: [Featured Image Zoom] zoom is not workingWas it working previously? What size is the featured image
Please post a link to a page on your site where the issue can be seen
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Adding images or links to TasbIt is possible to add images to tabs (eg icons) by using the ‘icon’ or ‘ico’ shortcode attribute which then enables each tab to be targetted with CSS. If you want to simply add an icon to each tab, you can use tabby responsive tabs customiser add-on plugin (which contains the font awesome 4 open source icon files) to make the icons available.
To change a tab to target a specific URL instead of opening the tab, You can use the Tabby Tab to URL Link add-on plugin.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] search within tab contentThe tab content can be indexed by search engines, however it is not possible for the search result to direct to the page with the relevant tab open.
Forum: Plugins
In reply to: [Audio Album] All tracknumbers are 1Please see this answer: https://wordpress.org/support/topic/song-titles-all-have-number-1-in-front/
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Tabby plugin not working when logged out of adminMy first thought was perhaps the issue is related to autoptimise, however after troubleshooting this by disabling autoptimise in the browser by adding ?ao_noptimize=1 to the url and refreshing the page, the issue remained suggesting that this is not the case.
In Web Developer Tools I see four instances of the “Uncaught ReferenceError: jQuery is not defined” error message, each giving a reference to a different script that uses jQuery as a dependancy – including tabby.js. This suggests that the issue is not specific to tabby script, but is caused by jQuery running later than the four scripts which depend on it, when it should be run before them.
In the page source I can see that the line which loads jQuery contains the attribute ‘defer’. I suspect this is causing it to run later than the scripts which depend on it.
If you can track down what is adding the ‘defer’ attribute to the line that loads jQuery and find the option to remove it, then we should be able to see whether this fixes the issue. Anything which caches/optimises/speeds up the site should be investigated for this.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Tabby plugin not working when logged out of adminThis is unusual. Please provide a link to a page on the site where the issue can be seen.