Copiaurbietorbi
Forum Replies Created
-
We’ll try to touch base with the theme developer one more time. Perhaps the approach to the issue was different. We shall see. Thank you
Hey Hardeep,
Thank you for getting back to us. The only thing we believe are using to minify js is WP Fastest Cache. But we never had this issue before until we decided to migrate from http to https.
We deactivate the plugin and activate it again while clearing cache, but is still not working.
Thank you for your help!
Forum: Fixing WordPress
In reply to: The font of my pages changed when moving from http to httpsHello Aslam and Ex.Mi,
Thank you both for your suggestions. We tried both of the plugins, first the really simple ssl and then the other, search and replace, and worked well. We already made the notifications to google through the google seach console and we will be waiting for the results.
Thank you both for your help and prompt response.
Hello Poonam,
Thank you for getting back to me and your explanation. It makes perfect sense.
All the best for 2018.
Forum: Themes and Templates
In reply to: [Zerif Lite] send button in contact form not workingHello Rodica,
I tried your suggestion and it seems that solved the issue.
Thank you for your help.
Forum: Themes and Templates
In reply to: [Zerif Lite] send button in contact form not workingHello Rodica,
Thank you for getting back to me. We chose to use the form that came with the theme and have adapted it with some of the features pirat forms have already.
I would like to keep using this form that is simple and has proven to be efficient. I haven’t been able to find where the problem is though. Either some corruption with the code due to upgrade wordpress or something else.
The problem seems to be with the hover feature in the send button only. The messages are received and the form responds the way it supose to.
I will check your suggestion for the near future, but in the meantime, could you give me a hand and help me solve this issue?
Your help will be greatly appreciated.
Hello Uriahs Victor,
I did what you suggested and it seems the issue was solved. I will run some more tests though, but so far, it’s all good in the neighborhood.
For my learning odyssey, could you tell me why deactivating the pluggins were part of the issue? the platform has been upgraded (wordpress) several times and never had this issue before.
Thank you for your help.
Using web inspector I found some code related to this inline tool bar in the customize screen and tried to disable it adding some code (below) to css advance editor:
div.mce-inline-toolbar-grp {
display: none !important;
}It worked while working with web inspector, but it didn’t work when at the end with the css advance editor.
Do you guys have any suggestions as to what code to add to get ride of this for good?
Thank you for your help and interest.
Forum: Fixing WordPress
In reply to: search bar showing on top left side of the themeThank you for getting back to me. I am not sure why I should contact the theme developers if I didn’t have this issue before. This search bar, not sure how to call it, appeared after upgrading to wordpress version 4.8.1
Any code in css that I can add to remove this search bar for good?
Forum: Plugins
In reply to: [WP Speed of Light] Can this plugin be used for CDN too?Ok thank you for the note. Any time soon?
Cheers,Hello Guys,
Any idea on where to make the changes using the visual editor? I thought it was on the static page but may be is on the stylesheet. The issue I have is that I don’t know where to make this changes in the code exactly.
PLease help!!!
Forum: Themes and Templates
In reply to: [Zerif Lite] Color LinesHello All,
I solved the issue of trying to open certain links in a new tab with the document ion I found on the link below that the lone developer kindly suggested:
https://docs.themeisle.com/article/90-how-to-open-links-in-new-tab
I also found out how to configure the alert messages of the forms submitted or to be submitted from the website (get in touch section).
As for this last part, I still have a question but I will open a new thread, so this is closed and thank you all for your help.
Forum: Themes and Templates
In reply to: [Zerif Lite] Color LinesHi Uriahs,
i am not familiar with the google chrome developer tools yet, but the website is https://www.copiose.com/wordpress
i am trying to open the links of twitter, linkedin and the address of the company in new tabs when someone is clicking on the icons and address respectively.
Also, I want the page related to one of the main buttons (“quality policy”) in the big title section to be opened in another tab when i click on it.
Thank you for your help and interest.
Forum: Themes and Templates
In reply to: [Zerif Lite] Color LinesHello,
I am learning how to code while I am developing the website. I have no experience whatsoever. This is completely empirical ??
If I setup the twitter button like ‘https://twitter.com/nameofthecompany’ in the general section, then it directs the information to where it suppose to be but in the same window.
But in this case, not sure if I have to include the whole address or just ‘#twitter’
Forum: Themes and Templates
In reply to: [Zerif Lite] Color LinesHello Thelonedeveloper (nice one by the way)
I appreciate the feedback. I saw this information in other forum and never got response as to what to replace in ” #footer .social li a ” with the link of what I want to open in a new tab.
For example, if I want the twitter to be opened in another tab, but the twitter button already is related to the link “https://twitter.com/nameofthecompany”, then how should I code it?
as
<script type=”text/javascript”>// <![CDATA[
jQuery(document).ready(function($){
$(‘https://twitter.com/nameofthecompany’).each(function(){
if( $(this).attr(‘href’) && 0 != $(this).attr(‘href’).indexOf(‘#’) ) {
$(this).attr(‘target’, ‘_blank’);
}
});
});
// ]]></script>or
<script type=”text/javascript”>// <![CDATA[
jQuery(document).ready(function($){
$(‘#twitter’).each(function(){
if( $(this).attr(‘href’) && 0 != $(this).attr(‘href’).indexOf(‘#’) ) {
$(this).attr(‘target’, ‘_blank’);
}
});
});
// ]]></script>I am new onto this programming. I am learning with trial and error ??
thank you all for your help and patience.