JBZ
Forum Replies Created
-
@sterndata Great. I did and it resolved. thanks
- This reply was modified 4 years, 9 months ago by JBZ.
Forum: Themes and Templates
In reply to: [Neve] The margin padding slide bar does not close automaticallyI have the version 2.5.3 and the problem is still there.
I use latest version of chrome.
When the input box lose the focus the slider bar must be hided but it doesn’tForum: Themes and Templates
In reply to: [Neve] Cannot hide/show images of predefined templatesThanks for the help
Also I updated to the latest version.
Yes the problem is still there. I duplicate a theme. It was successful.
Then I changed one item like border color. Pressed save and then all the settings gone.
I checked the DB. It write null in the theme table.Forum: Themes and Templates
In reply to: [Neve] When I add site logo, site title and tagline is goneOf course you can create the logo in png, but the ticket was aboutto show the title and logo at the same time.
Forum: Themes and Templates
In reply to: [Neve] When I add site logo, site title and tagline is goneOther possibility is to add the logo as an html before the site tag line in the header.
I do this.The please disable the edit button for the free users. The problem is I updated one theme and all the values gone, and I didn’t have any option to return back to starting situation.
sorry I am using free version. In the free version we cannot edit a theme?
- This reply was modified 4 years, 11 months ago by JBZ.
5 days passed no answer from the admin. I don’t know what is the reason but it reflects a weak support from your side.
Oh sorry, I found the answer, I must set the
View As
as aLogged out
.Forum: Themes and Templates
In reply to: [Neve] Keep the top menu sticky@caa5042 You are welcome.
I tried already. Even I tried with -99999999 and it does not resolve the issue.
Just if I remove theadd_action
hook and call it immediately then it will resolve the issue.One stupid solution that I find is like the following:
if ( trp_enable_translatepress() ) { require_once plugin_dir_path( __FILE__ ) . 'class-translate-press.php'; /** License classes includes here * Since version 1.4.6 * It need to be outside of a hook so it load before the classes that are in the addons, that we are trying to phase out */ require_once plugin_dir_path( __FILE__ ) . 'includes/class-edd-sl-plugin-updater.php'; /* make sure we execute our plugin before other plugins so the changes we make apply across the board */ //add_action( 'plugins_loaded', 'trp_run_translatepress_hooks', 10 ); trp_run_translatepress_hooks(); } function trp_run_translatepress_hooks(){ $trp = TRP_Translate_Press::get_trp_instance(); $trp->run(); }
So as you see I changed one line of
index.php
file. I changed the ‘plugins_loaded’ hook and directly called thetrp_run_translatepress_hooks
function. It causes to run this plugin before others.Now let me know can you confirm it as a good solution or you can offer me a better solution.
I analysed the plugin. It sets the locale late while it loaded before the
Ultimate Member
. So when I echo the locale in UM plugin it clearly shows at first theget_locale()
function returnsen_US
and laterde_DE
. So is there any suggestion for solving this issue to set the locale faster before other plugins start to use it ???