Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access dashboard after updateFind solution here
https://whatswp.com/how-to-fix-redirect-error-wordpress/Forum: Fixing WordPress
In reply to: Virtue theme space between menu and heading/sliderHi,
As this theme is from WordPress theme community I recommend you to open a support ticket on the theme support as the theme author will be able to help you more efficiently as users here do not have knowledge of the theme structure and files.
Theme Support forum: https://ww.wp.xz.cn/support/theme/virtue
Thanks
Forum: Fixing WordPress
In reply to: Pages that display category posts- Sela themeHi,
As this theme is from WordPress theme community I recommend you to open a support ticket on the theme support as the theme author will be able to help you more efficiently as users here do not have knowledge of the theme structure and files.
Theme Support forum: https://ww.wp.xz.cn/support/theme/sela
Thanks
Forum: Fixing WordPress
In reply to: redirect wordpress dashboardYou can do it through htaccess
Find below links to redirect another site
Forum: Fixing WordPress
In reply to: Got error upon installing plugin, now i cant do anythingHello motherearthoils,
Can you please try by updating the ‘woocommerce’ plugin the issue may be because of old version of woocommerce.
Thanks
Forum: Fixing WordPress
In reply to: Update options in option tableHello rphogat19
Can you please try using checking below condition handle all checking of existence of options:
if (FALSE === get_option('fb_url') && FALSE === update_option('fb_url',FALSE)) { add_option('fb_url',$url);} else{ update_option('fb_url',$url); }Thanks
Forum: Themes and Templates
In reply to: Can't see text over background imageHi,
To display the text on the background please add the following in stylesheet.
.omega-nav-menu a{ color: #ffffff !important; } body{ color: #ffffff !important; }Thanks
Forum: Fixing WordPress
In reply to: Link a Post's "featured image" to a page?Hello ArtsyEvin,
Can you please provide the link of you website to check because as per my understanding you are talking about the post details page which is single post page but you are saying that read more takes you to the child page which is not an child page which is post single page and which using the single.php for displaying it so Please check it once.
Thanks
Forum: Fixing WordPress
In reply to: Child theme is not loading the parent style.cssHello jordanotus,
Can you please using the import it in your child theme style.css file like this:
Note: Write your parent theme folder name in path of import./* Theme Name: KnowAll Child Theme URI: http://herothemes.com/themes/knowall-wordpress-knowledge-base/ Description: KnowAll Child Theme Author: HeroThemes Author URI: http://herothemes.com Template: KnowAll */ @import url("../parent-theme-name/style.css");Thanks
Forum: Fixing WordPress
In reply to: Edits following SSL cancelationYou can try replace all url https to http in database. Take backup file first before doing this
https://codex.ww.wp.xz.cn/Changing_The_Site_URL#Changing_the_URL_directly_in_the_databaseor
Take a look at WordPress admin –> Settings –> General
Do you see an https link for WordPress Address (URL) and Site Address (URL)?
Change https to http and then scroll down and click on save changes.
orYou can use below plugin
https://ww.wp.xz.cn/plugins/mavis-https-to-http-redirect/Forum: Fixing WordPress
In reply to: website redirectionHello sdaglas11,
Can you please check once by updating the permalink setting and check .htaccess again if their any 301 redirects are present if redirects are their you need to check is their any redirect plugin activated in you website.Please let us for any further help.
Thanks
Forum: Fixing WordPress
In reply to: get_the_termsHello atrag,
The $firstRand array also returns the set of array which indexing from 0 to on-words so if you want get all the terms assigned to post you have loop through the array ‘$firstRandArray’ using ‘for’ loop.
OR
If you want to get single term name value directly you can get by using below:$firstRandArray[0]->name , $firstRandArray[1]->namelike this please try you get your result.
Thanks
Forum: Fixing WordPress
In reply to: Unable to log into wpadmin pageHi,
Had you copied all files and also changed all the URL in the database?
The below link contains steps of Migrating WordPress from one location to another. Please ensure that you had followed all steps.
https://codex.ww.wp.xz.cn/Moving_WordPress
Thanks
Forum: Fixing WordPress
In reply to: WordPress Update Message Displaying Even Though I Just UpdatedHi,
There are chances that the Manual Update was not completed successfully and that is a reason you might be getting this message.
Please ensure that you have followed all the steps of Manual Update.
https://codex.ww.wp.xz.cn/Updating_WordPress#Manual_Update
Thanks
Forum: Fixing WordPress
In reply to: edited my footer, now posts are not visiableHi,
There must be syntax error which may be halting the page in between. Please turn on error reporting to see what exactly the error is related to.
You can turn on the WordPress debugging.
https://codex.ww.wp.xz.cn/Debugging_in_WordPress
Thanks