johno69
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Client Reports] Still working?Updated ok now.
Perfect, same issue for me. Thanks!
Forum: Plugins
In reply to: [Lara's Google Analytics (GA4)] Does the plugin have a shortcodeIs this still the case?
I am using Dashboard Switcher and want to show the analytics on a custom dashboard page for my clients.
Forum: Plugins
In reply to: [Disable Admin Notices individually] Conflicts with Lara’s Google Analytics.Glad I found this, I’ve been unable to get Lara to authenticate, de-activated this and it authenticated right away.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Issue with Latest AlbumCheck your shortcode
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Image Page – Album Title.grid .details { color: red; text-align: center; }
Forum: Plugins
In reply to: [SEOPress - On-site SEO] We found 2 meta robots in your page.@presskopp Thank you very much. I had the exact same issue. You have helped massively.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Album title in JIG viewLeave the code in the functions file.
This shortcode, needs to be placed separately to the photos shortcode, you can’t add them together
[URLParam param='cws_album_title']
This alone will add the album title in text to the page. Best to place it just before the photos shortcode.
What is your site, I can take a look if you like?
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Features suggestionshttps://www.ads-software.com/support/topic/album-title-in-jig-view/
Use this to show the album title.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Permalink to Photo’s page breaks itI fixed this with this function:
//advanced title + breadcrumb function add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { $args['title'] = get_the_title($id); $args['link'] = ""; $args['heading'] = 'h1'; return $args; } add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { if(!is_single()) { $current_post['content'] = get_the_excerpt(); $current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>'; } return $current_post; }
I see no point the page title being a link to the current page anyway. Then just added a button, “<- Back to albums” on my photos page.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Album title in JIG viewAdd to functions.php
//THIS IS A CUSTOM SHORTCODE TO DISPLAY A PARAMETER FROM THE URL function URLParam( $atts ) { extract( shortcode_atts( array( 'param' => 'param', ), $atts ) ); return $_GET[$param]; } add_shortcode('URLParam', 'URLParam'); // end function
Shortcode for page photos are displayed.
[URLParam param='cws_album_title']
Demo: https://www.tictocequestrian.com.au/gallery/
Click into an album and you will see the title.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Nothing is shown in the pageThe fact you struggled to get connected tells me you may have done it wrong.
Everything worked for me out of the box once set up correctly.
Did you give all permissions when prompted ?
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Carousel SpeedYou can adjust the speed of the carousel with this option:
speed=1000
Some other options are:
arrows=1
autoplay=1
autoplay_interval=6000
dots=0Thanks to Ian from the support team.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Album title in JIG viewResolved, I worked out how to fix it.
Forum: Plugins
In reply to: [Send Images to RSS] Remove Read More Text 
Add that to the field.
Otherwise it’s a code edit.