Forum Replies Created
-
in reply to: styling colors
Hello,
To make this possible you have to :
Step 1 – In the Language Switcher on the top WP Admin panel, select All Languages from the dropdown.
Step 2 – Once you’ve selected All Languages from the dropdown, the theme options for all the languages will be replaced by the default language you have set in WPML options. Once you make changes to any theme option, that change will be applied on all WPML languages.
Let us know.
Regards!
Hello,
I just fixed your issue by installing the theme again. Now everything look ok.
Let us know.
Best Regards!
in reply to: VC full blog not worksHello,
I have just set the article as blog.
https://www.ausunfinance.com.au/articles/
And now everything looks ok.
Let me know.
in reply to: Wishlist not responsiveHello,
Have you used any third party plugin for that.
Let us know.
Regards!
Hello,
Ok let us know we are here to help you.
Regards!
in reply to: Mobile menu text colorHello,
Just changed it on Customize > Header > Menu Style > Menu Item Active Color
Best Regards!
in reply to: Responsive footerHello,
You can remove one of the columns by adding the lines of code:
@media(max-width:480px){ .footer-content-row .footer-widget:first-child{ display:none; } }If you add these lines above on Extra Css the first column will be removed on mobile device.
In case you want to remove the second column you have to replace the first-child with second-child.
Let us know which column you want to remove so i can give the exact code.
Regards!
in reply to: WP bakery builder licenseHello,
The WP Bakery Page Builder is included within the theme so you don’t need any changes.
When our new update will go online the new plugin version will be included.
Regards!
in reply to: xmlrpc.phpHello,
Yes you can delete it without any problem. Or you can block it with firewall.
Best Regards!
in reply to: need the right hook nameHello,
Please can you go to Customize > Click on the Login/Sign Up and delete it.
After that please add a widget in the same section and select the Custom Sidebar 3.
Go to Appearances > Widgets > and Drag and Drop the widget June Widget MyAccount to Custom Sidebar 3.
You problem will be resolved.
Regards!
in reply to: Installation IssuesHello,
Please can you write your wp and ftp creds into your profile details so we can install the theme for you.
Let us know.
Regards!
in reply to: Wishlist not responsiveHello,
Sorry but i can’t find the online link when you have found this issue.
Let me know.
Regards!
in reply to: Custom WooCommerce SidebarHello,
Login into WordPress Dashboard > Codeless > Custom Siderbar.
There you can create how much sidebar you want and attach them to a specific page.
Regards!
in reply to: Reduce number of catalog pagination links on mobileHello,
To make that possible you have to edit the file \june\woocommerce\loop\pagination.php find the function:
function codeless_woo_pagination_args( ){ $total = isset( $total ) ? $total : wc_get_loop_prop( 'total_pages' ); $current = isset( $current ) ? $current : wc_get_loop_prop( 'current_page' ); $base = isset( $base ) ? $base : esc_url_raw( str_replace( 999999999, '%#%', remove_query_arg( 'add-to-cart', get_pagenum_link( 999999999, false ) ) ) ); $format = isset( $format ) ? $format : ''; if ( $total <= 1 ) { return; } return array( 'base' => $base, 'format' => $format, 'add_args' => false, 'current' => max( 1, $current ), 'total' => $total, 'prev_text' => '<span class="cl-pagination-prev"><i class="cl-icon-arrow-left"></i></span>', 'next_text' => '<span class="cl-pagination-next"><i class="cl-icon-arrow-right"></i></span>', 'type' => 'list', 'end_size' => 3, 'mid_size' => 3 ); }You have to change the end_size => 3 in end_size => 1 also you have to change the mid_size => 3 to mid_size => 1
For more detailed information please read the codex documentation:
https://codex.wordpress.org/Function_Reference/paginate_linksLet us know.
Regards!
This reply has been marked as private.