dragonrd3
Forum Replies Created
-
Forum: Plugins
In reply to: [Gwolle Guestbook] How to Change the text in the Guest Book formI tried and the gwolle_gb_header_text filter works without space. I also like the other two solutions. Thanks, Marcel.
Dragonrd3
Forum: Plugins
In reply to: [Gwolle Guestbook] How to Change the text in the Guest Book formHi Marcel,
I removed the heading in Guestbook>Settings, but the default heading, Write a new entry for the Guestbook, got inserted there again. What is the right way to remove the heading altogether? I understand I could use gwolle_gb_write to set it to an empty string. Thanks.
Dragonrd3
Forum: Plugins
In reply to: [Gwolle Guestbook] How to Change the text in the Guest Book formGuestbook > Settings > Form-tab > Heading is precisely what I’ve missed. Thank you so much, Marcel, for your reply! It helps to make my customization of Gwoll GB more robust. Really appreciate it.
Dragonrd3
Forum: Plugins
In reply to: [PDF.js Viewer] Error: This file was called improperly. Do not call directly.Hi Thomas,
Thanks for the reply, very much appreciated. Mine is a custom solution and no other plugins are involved.
I did try calling viewer.php directly with a variable, like so:
…/pdfjs-viewer-shortcode/pdfjs/web/viewer.php?file=filename.pdf&dButton=true&pButton=true&oButton=false&v=1.5.1#zoom=auto
but this didn’t work as there were messages in the console saying certain variables were not defined.
I then tried to provide my own shortcode handler, and that works. However, this approach requires me to go back and fix all the existing posts which is a lot of work.
It would be great if I can call viewer.php directly. Please kindly let me know the right way to do this.Forum: Plugins
In reply to: [PDF.js Viewer] Error: This file was called improperly. Do not call directly.Hi dwaynetorn,
The new shortcode generates code that refers to viewer.php with a version number. This file checks for the version number and if it doesn’t exist, it issues that error. I think you’re right that bypassing the shortcode seems to be discouraged.
Until this problem is resolved for me, I rolled back to version 1.3 which works.
Thanks for the pointer to the new plugin. Is that available on WordPress?Forum: Plugins
In reply to: Easy FancyFox Plugin doesn't work on mobileI’d like to add that Easy FancyBox works beautifully on my laptop. The UI is consistent whether it’s an image, gallery, youtube of pdf. I will continue to search for a solution to the PDF problem on mobiles, and would appreciate any help from the experts. If this is a known problem, please let me know if there’s a workaround or alternative. Many thanks.
Cheers,
Dragonrd3Forum: Plugins
In reply to: [Quick Featured Images] Images not showing in Theme AbleHi Martin,
You’re right that Able doesn’t have the code to handle featured images.I followed How to add featured image thumbnails to WordPress posts and pages, the easy way, and got it to work. Thanks.dragonrd3
Topic resolved.
Hi Kathryn,
Thanks for the reply! I wasn’t sure about editor-style.css so you helped clarified it.
I enqueue style.css as follows:
add_action( ‘wp_enqueue_scripts’, ‘able_child_theme_enqueue_styles’ );
function able_child_theme_enqueue_styles() {
wp_enqueue_style( ‘able-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘able-child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘able-style’)
);
}My able-child theme is now up and running, Yeah!
dragonrd3