- How to Import Ready Portfolio Items?
- How to Reorder Portfolio Items?
- How to Create Image Portfolio?
- How to Get the ID for Categories, Other Categories, and Tags?
- WP Portfolio ShortCode and Attributes
- No Items Found message – flush the permalinks.
- How to Create Video Gallery?
- How to Show Specific Portfolio Items using Shortcode?
- How to Hide Portfolio Menu Panel?
- How to Create Websites Portfolio?
- Slider doesn’t work on iOS Devices when Previewed in Portfolio
- How to Add CTA on the Preview Bar?
- How to Override Portfolio Templates?
- Re-import Starter Templates in Portfolio
- How to Style Portfolio Items and Menu Bar
- How to Create Single Page Portfolio?
- Update Navigation Link Strings on Single Portfolio Page
- How to Change “Quick View” String?
- Change site loading message
- How to replicate Starter Templates library?
- WP Portfolio Block Guide
- Troubleshooting WP Portfolio Import Issues: A Step-by-Step Guide
Change site loading message
Clicking on the Quick View button on the Website Portfolio shows a loading message. This message is displayed while the plugin fetches your website design from the respective URL.
This site loading message is displayed for a few seconds. You can alter this message text with the following filter. Add filter to your child theme’s functions.php file.
if( ! function_exists( 'prefix_chage_site_loading_message' ) ) ; function prefix_chage_site_loading_message( $defaults ) { $defaults['siteLoadingTitle' ] = __( 'My Title', 'astra-portfolio' ); $defaults['siteLoadingMessage' ] = __( 'My Loading Message.', 'astra-portfolio' ); return $defaults; } add_filter( 'astra_portfolio_shortcode_localize_vars', 'prefix_chage_site_loading_message' );
Was this doc helpful?
What went wrong?
We don't respond to the article feedback, we use it to improve our support content.
On this page