codeexplorer1
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spacious] How to remove fixed topbar gap on mobileSince you have the website with elementor, better to post your question there, but I am providing the solution. You may give it a try. Modify the CSS and add the following lines.
div div .elementor-element-3b643a9 { height 0px; }
- This reply was modified 1 year, 2 months ago by codeexplorer1.
Forum: Themes and Templates
In reply to: [Spacious] How to remove fixed topbar gap on mobileCan you please share the Url so that I can have a look at CSS? Then will try to suggest the solution.
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedThank you. ??
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedYou are right shared hosting doesn’t have Memcached daemon, but their backend team was also not able to check, when I have forwarded to them. They first told it will take 30 minutes, after that they will be able to telnet. After 30 minutes they said it is running fine. Then I told them that the following memcache code is not returning the desired result, they just told that they check through phpinfo page only. Anyway, thanks for your guidance and help. I have decided to change the service provider as GoDaddy team is not able to address the issue.
<?php $mc = new Memcached(); $mc->addServer('127.0.0.1', 11211); $mc->set('foo', 'bar'); $value = $mc->get('foo'); echo $value; ?>
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedI have asked Godaddy Technical Team. For almost an hour’s time they fail to understand what to do. Then again hey have told that since it is showing on phpinfo page it means it is running.
I don’t know what to do. I am thinking to move my hosting to some other service provider.
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedThank you. I will ask them to run the script.
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedI have checked with them and they said it is enabled and in the wordpress settings also it is shown as enabled. I am presenting here two screenshots, one is of wordpress and another of phpinfo.php that the service provider has given. Am I doing something wrong?
Forum: Plugins
In reply to: [LiteSpeed Cache] Connection failedThe above code is not returning any value. It is blank.
Following are the settings::
- This reply was modified 1 year, 3 months ago by codeexplorer1.
Forum: Plugins
In reply to: [LiteSpeed Cache] Ability Remove LiteSpeed ??Cache Plugin data CompletelyHave you tried “Empty entire cache” button in Toolbox of Litespeed Cache?
Forum: Plugins
In reply to: [VikRentCar Car Rental Management System] Widget not working on homepageResolved. Enable Rental somehow got disabled.
Forum: Plugins
In reply to: [Wayra - Click to Order or Chat] Reduce margin on button next to add to cartI have done. By modifying class name of button with non variation parameter.
Forum: Reviews
In reply to: [Translate Multilingual sites - TranslatePress] Nice pluginYou are welcome. From button functionality I mean that on click of button language can be changed. At present this functionality can be achieved by selecting opposite language only. For displaying buttons for two different languages side by side one need to modify the code.
Thanks.
Thanks.
<div class=”wpglobus-selector-box”> <?php
/**
* Filter that prevent using language that hasdraft
status.
* That works with modulePublish
from WPGlobus Plus add-on.
*/
$enabled_languages = apply_filters( ‘wpglobus_extra_languages’, WPGlobus::Config()->enabled_languages, WPGlobus::Config()->language );foreach ( $enabled_languages as $language ):
$url = null;
$is_current = true;if ( $language != WPGlobus::Config()->language ) {
$url = WPGlobus_Utils::localize_current_url( $language );
$is_current = false;
}$flag = ‘flags_url . WPGlobus::Config()->flag[ $language ].'” />’;
$link = $flag . ‘ ‘ . WPGlobus::Config()->en_language_name[$language] . ‘ ‘;printf( ‘%s‘, ( empty( $url ) ? ” : ‘href=”‘ . esc_url( $url ) . ‘”‘ ), ( $is_current ? ‘class=”wpglobus-current-language”‘ : ” ), $link );
endforeach; ?>
</div>
Thanks for the guidance. It worked. The remaining aspect is that instead of Language Code that I have configured in plugin. I am getting complete name of the language. Can you please suggest, how to overcome that?