Daniel Tara
Forum Replies Created
-
I have performed the check and it now reports correctly:
- No error for declaration
function get_link()
- No error for function call
$this->get_link();
- No error for function call
$this::get_link();
- Error for global function call
get_link();
Forum: Reviews
In reply to: [Post Duplicator] Messes up query and paginationThank you, I was unaware of that setting. I have updated my rating accordingly. Wouldn’t it be a better idea to make that behavior default? Who needs posts with the same time stamp anyway? An offset of 1 second is enough and should also prevent posts from publishing in the future.
Forum: Themes and Templates
In reply to: [Enlightenment] Some alignment correction in my websiteIt’s hard to tell from just the screenshot. How did you generate those tabs? The recommended way to do it in Enlightenment Theme is with Bootstrap Shortcodes for WordPress plugin. You can see an example here.
Forum: Themes and Templates
In reply to: [Enlightenment] CarouselThe slider used by the Custom Query Widget is FlexSlider, not Bootstrap Carousel. Button navigation is not yet supported but planned for a future version.
A query of multiple pages is supported. The slider from the theme demo is an example of this. You can read more about the widget in this tutorial and you may also find this one useful.
Forum: Themes and Templates
In reply to: [Enlightenment] how to use slideshowIt is documented in this tutorial.
Forum: Themes and Templates
In reply to: [Esplanade] Changelog of Esplanade 1.1.0 ?You can find the changelog in readme.txt updated with each release. Here’s the latest:
* Added jQuery compatibility code * Sanitize CSS to avoid XSS but allow the '>' selector * Updated jQuery Layout script * Fixed script dependencies for jQuery Layout * Removed header_image_height option * Removed deprecated custom header functionality * Replaced Farbtastic with WP-Color-Picker * Updated screenshot for retina displays
Forum: Themes and Templates
In reply to: [Pinboard] What is included in the upgrade?Here’s a detailed insight over what was changed in the latest update.
Forum: Themes and Templates
In reply to: [Pinboard] Custom Category LinksReplace the categories widget with a custom menu widget.
Forum: Themes and Templates
In reply to: [Pinboard] Pinboard and Carousel (Jetpack)Try to disable the lightbox from theme options. If it still doesn’t work add this line at the end of functions.php:
remove_filter( 'post_gallery', 'pinboard_gallery_shortcode' );
Forum: Themes and Templates
In reply to: [Pinboard] Sidebar jumping below contentUnder Theme Options > Layout for the option Layout Columns try selecting 3.
Forum: Reviews
In reply to: [Pinboard] good theme – header image limitationsYes, we’re currently working on Esplanade. This one has more than just a few issues.
I see you are using a child theme. You have probably overridden the function that registers or enqueues the scripts. Look at the updated functions.php file and update your theme accordingly. Specifically, look for the jquery-migrate script and other scripts that have it as dependency.
Forum: Themes and Templates
In reply to: [Pinboard] Google fonts plug inA nice list of Google Fonts is already enabled in theme options. Have you tried those?
The infinite scroll script uses deprecated code that was removed from jQuery 1.9
I have added compatibility code to the latest version and should now be working properly:
Forum: Themes and Templates
In reply to: [Pinboard] Slider image sizeThe tutorial above uses CSS hacks which work but aren’t exactly ideal. The simplest way to change the size of the slider images is to modify this function call in functions.php:
add_image_size( 'slider-thumb', 1140, 395, 1 );
As you can see you can change the width and height of the images. Then use this plugin to regenerate the thumbnails.
- No error for declaration