Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Read More TagOpen your post list page, Maybe its on index.php, add below code any try
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)Forum: Fixing WordPress
In reply to: Is it able to put a track code in my blog?Hello yuchaogao,
Yes you can either put this code in function.php like this
add_action('wp_head','hook_javascript'); function hook_javascript() { $output="<script type="text/javascript"> var gr_goal_params = { param_0 : '', param_1 : '', param_2 : '', param_3 : '', param_4 : '', param_5 : '' }; </script><script type="text/javascript" src="http://sparadise.biz/goals_log.js?p=43&u=P"></script>"; echo $output; }OR If you want put it in header.php put like this
<script type="text/javascript"> var gr_goal_params = { param_0 : '', param_1 : '', param_2 : '', param_3 : '', param_4 : '', param_5 : '' }; </script><script type="text/javascript" src="http://sparadise.biz/goals_log.js?p=43&u=P"></script>Thanks
Forum: Fixing WordPress
In reply to: User roles – for editing pagesAfter submit post save in draft, admin will review and confirm that post
Writ query like below
// Create post object $my_post = array( 'post_title' => wp_strip_all_tags( $_POST['post_title'] ), 'post_content' => $_POST['post_content'], 'post_status' => 'draft', 'post_author' => 1, 'post_category' => array( 8,39 ) ); // Insert the post into the database wp_insert_post( $my_post );More information
https://developer.ww.wp.xz.cn/reference/functions/wp_insert_post/
Forum: Fixing WordPress
In reply to: Fatal Error downloading a pluginHi,
Then you have login on your server using FTP or CPanel and delete the following folder.
/web/htdocs/www.gaialimandri.it/home/home/wp-content/plugins/customify/
You have to delete the customify folder and all files inside it.
Thanks
Forum: Fixing WordPress
In reply to: Fatal Error downloading a pluginHi,
Is wordpress installed on your computer or server?
Thanks
Forum: Fixing WordPress
In reply to: Fatal Error downloading a pluginHi,
It seems the plugin is causing error. Please delete the following folder and you website will start working.
wp-content/plugins/customify/
You have to delete the customify folder and all files inside it.
Thanks
Forum: Networking WordPress
In reply to: Changing a site URLHi,
Please follow the steps from the following link to change site URL.
https://codex.ww.wp.xz.cn/Changing_The_Site_URL
Thanks
Forum: Fixing WordPress
In reply to: On media page there are too many images per page and page freezesFor list view, you can change number images display on a page. Find top corner screen options click on that it will expand, give number image you want to displays
https://codex.ww.wp.xz.cn/Media_Library_Screen#Page_Navigation
Forum: Fixing WordPress
In reply to: Post Author name missing zerif lite themeAske here. Anyone of author will help you
https://ww.wp.xz.cn/support/theme/zerif-liteForum: Fixing WordPress
In reply to: Setting my blog to the correct countryFollow below link. Change Time Zone and site language, Maybe it will work
http://www.tutorialspoint.com/wordpress/wordpress_general_setting.htm
Forum: Plugins
In reply to: [WooCommerce] Problem with new product categoriesHello giouli,
Are you getting any error in console while adding those product in new category ? Please check.
Thanks
Forum: Fixing WordPress
In reply to: New Windows Pop Up Pages Like ThisHi,
There are quite a few plugins available. Some of them are as follows:
https://ww.wp.xz.cn/plugins/onclick-show-popup/
https://ww.wp.xz.cn/plugins/anything-popup/
https://ww.wp.xz.cn/plugins/popup-maker/Please see which one fits your requirements.
Thanks
Forum: Fixing WordPress
In reply to: Automatically add post links to pageHi,
You can set your front page as blog page and automatically all posts will be displayed on the frontpage.
Please see below link for more information.
https://codex.ww.wp.xz.cn/Settings_Reading_Screen
Thanks
Forum: Fixing WordPress
In reply to: Invalid opcodeHi,
it seems a plugin error.
If you have ftp access of your server then log onto the server and delete the following plugin folder.
wp-content/plugins/wp-statistics/
Thanks
Forum: Localhost Installs
In reply to: From subfolder to root: No such file or directoryHi,
I think the “/” is missing after the www and before root.
eg: C:\domains\graduaterecruiting.nl\wwwroot/wp-blog-header.php
should be
C:\domains\graduaterecruiting.nl\www\root/wp-blog-header.php
Thanks