bgallagher
Forum Replies Created
-
To temporarily fix the issue I edited /render/headings.php lin 32 from ‘id=”mega-line-container”‘ to ‘class=”mega-line-container”‘. And then edited the /css/heading.css to change all instances of “#mega-line-container” to “.mega-line-container”.
This resolved the issues for me.
Forum: Plugins
In reply to: [BxSlider WP] BxSlider WP Pro 1.5.1 issuesFor anyone else encountering the problem just edit the /src/BxSliderWP/WidgetSlider.php file ~ line 50 from
if($sliders = Codefleet_BxSlider_Data::get_sliders() ):
to
if($sliders = BxSliderWp_Data::get_sliders() ):I’ve JUST updated to 5.4.1 and still cannot authenticate.
The Dropdown is not appearing for me either, and it seems that the input/modal to add the authentication hash is broken.
When I add the hash and save nothing happens.
Using Win 8, Latest Chrome, PHP 5.4
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Excerpt Length and Read More IssuesI have the same issue. I modified the widget for the time being to fix this issue.
the issue is in the “includes\functions.php” ~line 178
$html .= wp_trim_words( apply_filters( 'rpwe_excerpt', get_the_excerpt() ), $args['length'], ' …' );The issue is that the excerpt is pulling in the “read more text” BEFORE it’s being trimmed. Here is my edit to fix the issue:
$html .= wp_trim_words( apply_filters( 'rpwe_excerpt', get_the_content() ), $args['length'], ' …' );Forum: Plugins
In reply to: [Analyticator] ERRORI am also receiving this error. Not sure if this is due to google changing it’s api, or a depricated version of the Google API SDK bundled with the plugin.