marcandretrahan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Reiki] Customizer not working after update to WP 4.8It looks to me like the developper stopped working on this project..
Forum: Plugins
In reply to: [Reiki Companion] Customizer broken in 4.8 – RC1WordPress 4.8 has been live for almost a week now and still no information about an update of this plugin.
- This reply was modified 7 years, 9 months ago by marcandretrahan.
Forum: Themes and Templates
In reply to: [Reiki] Customizer adds cuztomize_changeset to URL on live siteI can’t look into it right now but email me and I’ll gladly help you later tonight. [email removed]
- This reply was modified 7 years, 10 months ago by bdbrown.
Forum: Themes and Templates
In reply to: [Reiki] Customizer adds cuztomize_changeset to URL on live siteDid you put the required code in the functions.php? Without this little line, WordPress will not be loading the script therefore it is useless.
Put this code inside the function ? reiki_scripts() ? found in the file functions.php around the line 180
wp_enqueue_script( 'fix-customizer', get_template_directory_uri() . '/assets/js/fix-customizer.js', array('jquery'), false, true );
Hope it helps! ??
Forum: Themes and Templates
In reply to: [Reiki] Customizer adds cuztomize_changeset to URL on live siteYou can copy paste from the browser url and it should give you something like this
Forum: Themes and Templates
In reply to: [Reiki] Customizer adds cuztomize_changeset to URL on live siteYes, definitely a workaround. Should not be used after the problem is fixed.
Forum: Themes and Templates
In reply to: [Reiki] Customizer adds cuztomize_changeset to URL on live siteI have the exact same problem with my website and I posted a thread for it (yours have more information though!). https://www.ads-software.com/support/topic/customize_changeset_uuid-added-when-using-the-customizer/
I currently made a ugly fix until the issue is fixed.
Create a new file named fix-customizer.js (script below) and put it in /assets/js/ of the theme. Then add the following code to the function reiki_scripts() in the functions.php of the theme.
functions.php
wp_enqueue_script( 'fix-customizer', get_template_directory_uri() . '/assets/js/fix-customizer.js', array('jquery'), false, true );
fix-customizer.js
(function( $ ) { // Grab the current url and the url of the homepage var currentUrl = document.location.href, homepageUrl = ""; // Put the main website url // If we are on the homepage if(currentUrl === homepageUrl) { // Every ? a ? tag with the class ? button, primary_button, secondary_button, white_button ? $("a.button, a.primary_button, a.secondary_button, a.white_button").each(function() { // Grab the current href attribute var $this = $(this), btnUrl = $this.attr('href'); // Split the href with the caracter ? ? ? and keep only the first part btnUrl = btnUrl.split("?")[0]; // Update the link url with the new one $this.attr('href', btnUrl); }); } })( jQuery );
Forum: Themes and Templates
In reply to: [Reiki] Changing “About Us” photo overlay colorYou can add this piece of CSS code into the ” Additional CSS ” option of the customizer. You have to put it after the Comment section which is delimeted by “/*” and “*/”.
.about-overlap-imgcol:before { background-color: inherit; }
- This reply was modified 7 years, 11 months ago by marcandretrahan.
Forum: Plugins
In reply to: [Reiki Companion] ?customize_changeset_uuid added when using the customizerI’ve made a public test website that has the same problems has my local version. The last button that I modify the url will be correct but all other buttons will have the ?customize_changeset_uuid=xxxxxx append to them.
As you can see, the 2 buttons in the hero image are wrong, the two buttons added in the text are wrong and the last one in the Call to Action is fine since it’s the last one I edited.
This is a fresh install with only reiki theme and reiki companion plugin.
Link to the test website https://site-meute.com/wp/
You can log in with the username admin and the password admin.
- This reply was modified 7 years, 11 months ago by marcandretrahan. Reason: added clarification
Forum: Plugins
In reply to: [Reiki Companion] ?customize_changeset_uuid added when using the customizerI’m using Google Chrome v55.0.2883.75 on a Windows 7 machine. I do not have any adblock or extensions on this browser. I currently cannot send you a link of the website since it’s a local version but I’ll make a public one later tonight.
Thanks ??