Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Buddypress Sort MembersCheck below link for solution
https://buddypress.org/support/topic/resolved-how-to-sort-members-using-one-or-multiple-fields/
Forum: Fixing WordPress
In reply to: Changing the URL directly in the databaseReplace URL easy way using below tool. Just download to your root WordPress where wp-config.php file there and run in browser
https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Forum: Fixing WordPress
In reply to: Menu's font is italicized on mobile devices how to change to normal?Find and replace with below before doing take backup file
@media (max-width: 979px) .nav-collapse .nav > li { float: none; font-family: serif; }Add above in below link
http://www.livingthedreamrvrentals.com/wp-content/themes/bloxpro/cyberchimps/lib/bootstrap/css/cyberchimps-responsive.min.css?ver=1.0Forum: Fixing WordPress
In reply to: plugin update errotHi,
Do you get this error while updating any plugin or a specific plugin?
Thanks
Forum: Fixing WordPress
In reply to: Website CopyCan you check your server’s error logs? A blank white screen usually indicates a fatal PHP error (possibly related to a plugin or theme you’re using on that site).
Add `error_reporting(E_ALL); ini_set(‘display_errors’, 1);
define( ‘WP_DEBUG’, true);` in config.php
IF not work try below
1) Rename plugin folder and check or deactivate all plugin active one by one.
2)If above is not works . Check any space is there end of function.php file
3)If above is not works active default theme
Forum: Fixing WordPress
In reply to: Website Screenshot Won't WorkHi,
As this is a plugin related issue you should report this on the plugin support page. There you will get fast assistance from the Plugin Author.
https://ww.wp.xz.cn/support/plugin/wp-screenshot
Thanks
Forum: Fixing WordPress
In reply to: iframe not embedding (Responsive theme)Try below one once
[iframe src=”http://web.trevor-roberts.com.au/trevor-robertscomau-azjg3/pages/24478ac38915e611813ac4346bade5b0.html” width=”100%” height=”500″] after publish page check it in front endForum: Fixing WordPress
In reply to: Admin Dashboard ToolbarHi,
Can you please provide a screenshot?
Thanks
Forum: Hacks
In reply to: wp_redirect not workingPlease add semicolon after add_action( ‘init’, ‘redirect_visitors’)
So code should be like below:
add_action( ‘init’, ‘redirect_visitors’ );
function redirect_visitors() {
if ( ! is_user_logged_in() && is_front_page() ) {
wp_redirect( ‘http://www.tz-jelenje.dreamhosters.com/readme.html’, 301 );
exit; } }Forum: Fixing WordPress
In reply to: Linkable Images in A SliderYour can try below plugin also
Forum: Themes and Templates
In reply to: Create a 2nd Search Form (different styling)Yes , You can create your own custom search box or you can use plugin to create other search box
try this link to create custom searchbox :
https://premium.wpmudev.org/blog/build-your-own-custom-wordpress-search/Forum: Fixing WordPress
In reply to: Extra sections in theme's styleProvide url or post your query in theme related support forum
Forum: Fixing WordPress
In reply to: Read more link on custom excerptsHow To Limit Words and Characters in content WordPress
1. Words Length:
Remove the <?php the_content();?> insert the below code
<?php $content = get_the_content(); $trimmed_content = wp_trim_words( $content, 60, '<a href="'. get_permalink() .'">...[ read more ]</a>' ); ?> <p><?php echo $trimmed_content; ?></p> (Change the 60 to your desire words length)2. Character Length :
Remove the <?php the_content();?> insert the below code
<?php echo substr(strip_tags($post->post_content), 0, 46); ?> <a href="<?php echo get_the_permalink($post->ID); ?>">read more</a>//(Change the 46 to your desire string length)
Forum: Fixing WordPress
In reply to: Themes no images and thumbnail. What to do?Hi,
After uploading from local to remote server had you replace all URL from local to remote server in the server’s database.
Below is the link which explains step by step moving WordPress from one location to another.
https://codex.ww.wp.xz.cn/Moving_WordPress
Thanks
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Information not being pushed in to mailchimpHello praveenjambar,
If you are getting the Error: No Mail-chimp lists were selected. means you have not selected any mail-chimp list form drop-down setting in plugin option page please try once by checking all the setting in mail-chimp plugin.Their is option for select a list in plugin.
Thanks