Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error 500, Slow loading & drop in Sessions in Google AnalyticsForum: Fixing WordPress
In reply to: Listing portfolio itemsHi,
If the theme is custom theme then you should open a ticket at the website from where you had downloaded/purchased this themes as the theme owner will be able to assist you more quickly and solve your problem.
Thanks
Forum: Themes and Templates
In reply to: Searching for dynamicaly category listingHello konpatsogiannis,
Means you want build the single page site right ? If Yes you can refer any single page site theme.
Thanks
Forum: Plugins
In reply to: [Contact Form 7] populate field with data from a form on the previos page.Hello bcallahan,
You will find the Additional Settings field in contact form management page. Simply insert the following line into it:
on_sent_ok: "location = 'https://thankupage_url.com&' + $('form.wpcf7-form').serialize();"This will append all the form data as parameters in the query string.
Thanks
Forum: Fixing WordPress
In reply to: Ruby on Rails and WordPressHi,
Yes you can have both website on same domains without causing interference with each other.
The only thing is that the server needs required PHP and MYSQL version to run WordPress.
https://ww.wp.xz.cn/about/requirements/
Thanks
Forum: Plugins
In reply to: [Advanced Editor Tools] The TinyMCE missing from editorHello Domi2015,
Can you please check the TinyMCE Advanced plugin setting once may be the case that settings are not enabled.
Thanks
Forum: Themes and Templates
In reply to: Woocommerce fatal error – helpHello elo74,
Please in wp-admin go to plugins check ‘Woo-commerce’ plugin is activated or not this error is showing because your theme has Woo-commerce function included but the plugin is not activated once you activate the plugin everything will be fine.
Thanks
Forum: Themes and Templates
In reply to: [Spacious] Post Date Author and categoryHello wplearner01.
Can you please share website link to check.
Thanks
Hi,
Your file seems to fine with no error.
Thanks
Forum: Fixing WordPress
In reply to: Tabs not showing after UpdateHi,
You will have to debug the issue and find out what is causing this problem.
But from my perspective I think one of the JS file in your wordpress/plugin installation is not comaptible with the latest version of wordpress (Updated wordpress).
Thanks
Forum: Themes and Templates
In reply to: Orvis Theme, Sidebar display orderHello ESSBEEAY,
Please add the below code in your theme functions.js file:
if(screen.width<=895){ $('#secondary').insertBefore('#primary'); }OR
Add the below code in your header.php<script> jQuery(document).ready(function(){ if(screen.width<=895){ jQuery('#secondary').insertBefore('#primary'); } }); </script>Thanks
Forum: Networking WordPress
In reply to: Migrating from dev to production change site URL = problemHi,
I recommend to check the wp_site, wp_sitemeta and wp_blog tables once more and then clear your browser cache and then try.
Thanks
Forum: Fixing WordPress
In reply to: Website looks different on other BrowsersWelcome 🙂
Forum: Networking WordPress
In reply to: Unable to access Network Admin dashboardHi,
Yes that would be better.
Thanks
Forum: Themes and Templates
In reply to: [Aberration Lite] Sentance Case for Menu itemsHello southaussienomad,
Please add the below line of css code in your theme style.css file:
body .main-navigation li { text-transform: capitalize; }