arakelthedragon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fix wordpress search for a different languageThank you for your answer!
As I have written in my original post, please do not redirect me. I have already tried asking them for support and they are of no help what so ever.
What the plugin is does not matters. Its a simple php function, all I need is some good explanation on how it works and how to edit it.
The function is build based on the wordpress system, I am certain you know how it works and how it can be edited.
The whole problem is from where does it get the tags and how to change that.
The file contains 1 simple line. I doubt its necessary to be helped by the developer.
- This reply was modified 4 years, 5 months ago by arakelthedragon.
Forum: Fixing WordPress
In reply to: SSL certificate after migrating siteUpdate:
Now i get “ERR_CERT_AUTHORITY_INVALID”.I transferred the private key and certificate to the new server. Perhaps there should be some conversion which I am missing?
Forum: Fixing WordPress
In reply to: SSL certificate after migrating siteI am moving from “siteground.com” to “byethost.com”. The SSL is “Let’s Encrypt”.
Currently I am re-updating the wordpress files and database, as I got a problem maybe after trying to install the latest version (5.02), maybe its do to a different reason, I don’t know.
I will post the link to the website when I solve the problems.
- This reply was modified 5 years, 11 months ago by arakelthedragon.
I receive this error when I enter the code from google.
Forum: Fixing WordPress
In reply to: WARNING: Cannot modify header information – headers already sentGood day! I have a similar problem. My problem comes from the google analytics simple plugin. It is not the encoding, when I disable the plugin everything works fine.
The plugin is located in site.com/wp-content/plugins/google/google.php[code]
<?php
/*
Plugin Name: Simple Google Analytics Plugin
Plugin URI: https://cfcbazar.com
Description: Adds a Google analytics trascking code to the <head> of your theme, by hooking to wp_head.
Author: Arakel Horov
Version: 1.0
*/
?><?php
function wpmudev_google_analytics() { ?>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-90231730-1', 'auto');
ga('send', 'pageview');</script>
<?php }
add_action( 'wp_head', 'wpmudev_google_analytics', 10 );
[/code]- This reply was modified 7 years, 10 months ago by arakelthedragon.