Forum Replies Created
-
Author
-
Vinzent
ParticipantHello. @Laura
Like icon, as can the position of the attached image?
Located at the top of the blog post.
If possible, please let us know how.
Thank you.
Vinzent
ParticipantFebruary 22, 2016 at 11:28 in reply to: IE11 renders page differently from Firefox and Chrome #105667Vinzent
ParticipantUpdate this file.
I solve the problem.
https://archived.seventhqueen.com/forums/topic/3-9-no-good-on-ie/#post-105560Vinzent
ParticipantI found the answer. (Again, I ask questions and I answer …)
Recently, a patch file exists, the question put to.
https://archived.seventhqueen.com/forums/topic/3-9-no-good-on-ie/#post-105560
Note that I use with the program cache + cloudflare.
Normal should delete the cache, both work.
Good luck to all.
Vinzent
ParticipantOh God. @sharmstr
I’m so far been put into the purchase code.
I hope that you do not make the mistake of …
http://codecanyon.net/
Profile> API Keys
The location API Keys.Thank you so much.
Just updated the guidance came to 3.1> 3.9.
Fear and expect.
Vinzent
ParticipantHi. @sharmstr
Because people kept asking what was going to be in 4.0
Release 4.0 will not be updated.
I understood.But I wonder.
The date I purchased the theme 12.15.2015Look at the update log
COPY CODEVersion 3.9.1 - 17.02.2016 - Fixed Javascript error on Buddypress profile page related to cover image script Version 3.9 - 15.02.2016 - NEW FEATURE: SideKick interactive WordPress tutorials integrations. You get a FREE premium SIDEKICK annual license (a $ 60 value) and 10 Kleo specific tutorials plus other 200 WordPress Basics Walkthroughs.I’ve never even once the theme is updated automatically suspended.
Moreover, I have no sidekick plugins.I do not want to manually update (afraid …)
My theme is Kleo wonder that auto-update feature work?
Vinzent
ParticipantMy Envato account: idaebak
wp dashboard > theme options > theme update
Themeforest Username: idaebak
Themeforest API KEY: 977fb83c-ba6c-417a-9af8-5164b33749cfWhat’s wrong?
I did not even once after purchasing 3.9 version update notification.
I made sure the envato download.
And I twice had a minor patch?
I do not know why.
Let me just check.LICENSE CERTIFICATE : Envato Market Item
==============================================This document certifies the purchase of:
ONE REGULAR LICENSE
as defined in the standard terms and conditions on Envato Market.Licensor’s Author Username: SeventhQueen
Licensee: jongsu kimFor the item:
KLEO ā Next level WordPress Themehttp://themeforest.net/item/kleo-next-level-wordpress-theme/6776630
Item ID: 6776630Item Purchase Code: removed for privacy
Purchase Date: 2015-12-16 14:26:45 UTC
For any queries related to this document or license please contact Help Team via https://help.market.envato.com
Envato Pty. Ltd. (ABN 11 119 159 741)
PO Box 16122, Collins Street West, VIC 8007, Australia==== THIS IS NOT A TAX RECEIPT OR INVOICE ====
Vinzent
ParticipantI solved the problem.
Add the following code to kleo-child / style.css file.
.masonry-listing .post-footer {height: 40px; }p / s: Alone question, let alone answer. cool!
Vinzent
ParticipantVinzent
ParticipantI found the answers to my questions.
I have attached the image bbpress topic.
I had to paste an image from the clipboard.That was the problem immediately.
Clipboard image was not sizing.
So solve the problem, delete and then upload the image to the clipboard image.Hope someone can help (if my English is written correctly …)
Have a nice weekend.
Vinzent
ParticipantI found the solution.
I found two things failed.The first solution.
kleo / page-parts / post-content-masonry.php copy the files to kleo-child / page-parts / post-content-masonry.php.Before change:
$ image = aq_resize ($ slide, $ kleo_config [ 'post_gallery_img_width'], $ kleo_config [ 'post_gallery_img_height'], true, true, true);
After the change:
$ image = aq_resize ($ slide, 480, 480, true, true, true);Before change:
$ image = aq_resize ($ img_url, $ kleo_config [ 'post_gallery_img_width'], null, true, true, true);
After the change:
$ image = aq_resize ($ img_url, 480, 480, true, true, true);No change.
The second solution.
kleo-child / functions.phpCOPY CODEfunction KleoCustomImagesSizes () { Ā Ā Ā Ā global $ kleo_config; Ā Ā Ā Ā // Post image sizes for carousels and galleries Ā Ā Ā Ā $ Kleo_config [ 'post_gallery_img_width'] = 555; Ā Ā Ā Ā $ Kleo_config [ 'post_gallery_img_height'] = 333; } add_action ('after_setup_theme', 'KleoCustomImagesSizes');There is also no change.
I would like to help.
Vinzent
ParticipantI resolved.
Maybe I am, look at working too many hours.
wordpress> settings> Reading> Blog pages show at most
This option adjustment.I previously ‘1’ posts
I’m stupid.
Hope this helps someone this article …
Vinzent
ParticipantI resolved.
Maybe I am, look at working too many hours.
wordpress> settings> Reading> Blog pages show at most
This option adjustment.I previously ‘1’ posts
I’m stupid.
Hope this helps someone this article …
Vinzent
ParticipantHi.
Visit my website.
And try the search.Keywords: usb
Search results: 4
Four results are not printed on one page.
Vinzent
ParticipantHi Jong Su,
Caspar from WP Rocket here. Sorry to hear youāre experiencing an unexpected behavior with WP Rocket. Letās fix this!
Iāve visited your site in search of a live example for the behavior you had illustrated with those screenshots. Up to now, the pages Iāve visited seem to work all fine, but that is obvious as LazyLoad seems to be disabled.
However, even with LazyLoad disabled, I can see (for example on this page) that the rtMedia for WordPress, BuddyPress and bbPress plugin seems to cause the issue youāve described.
That plugin tries to assign a fixed height to an imageās wrapping <div> and
- containers. Hereās an illustrating screenshot:
As you can see, the image in this example has a height of 240px, and its wrapping div and ul elements get assigned a fixed height of 275px each.
Carousel scripts often operate like this, calculating a fixed height value from an imageās height and assign that fixed height to the wrapping container. However, that implementation creates a problem with LazyLoad generally, because with LazyLoad enabled the image has not yet been loaded when the script tries to retrieve its height value.
Hereās whatās happening when LazyLoad is active:
When the document is loaded, that rtMedia script tries to calculate the height values for those image-wrapping <div> and- elements.
Because no image has been loaded at this point (thanks to LazyLoad), list items are empty.
Our script doesnāt notice and grabs the height value of an empty list item (35px).
The script applies that height of 35px to said wrapping <div> and- elements: these now both have a fixed height of 35px.
Finally, when the user scrolls down the page, LazyLoad allows images to be loaded into their wrapping containers.
Because those containers already have been set to a fixed height, images appear cut-off as youāve seen on your second screenshot.
The ābadā news is: This is not an issue caused by WP Rocket, so it cannot be fixed from WP Rocket.The good news is: It still can be fixed. š
This is what needs to be done, either in a custom plugin, or by the rtMedia plugin itself:
Determine the image ID(s) for a carousel.
(I canāt tell you exactly how to do that, as it depends on how the rtMedia plugin operates, but the developers of that plugin would surely be able to get you going.)
Fetch the height value of the first image in each set (for example via wp_get_attachment_image_src()).
Apply that height value to the markup of the script, so that those image-wrapping <div> and- elements both get a fixed height that would equal the actual height of the first image in the set.
(Again, the plugin developers of rtMedia would be able to help you out with required information here. Maybe theyād even be willing to make this a feature in their plugin?)
Thus, the default height for those wrapping elements would perfectly fit for the first image when it eventually gets loaded by LazyLoad. If there are more than one images in a set, the script itself would take care of adjusting that fixed height when the image changes.Vinzent
ParticipantDear Laura.
Problem is
1. local trans> sync> not translated 250 words.
2. 100 words translated by the poedit.
3. ftp upload
4. loco trans> sync> Brings the old version (250 untranslated words)Translation may continue to overwrite the previous version.
Vinzent
ParticipantAwesome! Radu!
Please forgive me.
I did not get to speak English well was to confuse you.
Thank you very much!
Regards.
Vinzent
ParticipantHi. Radu.
It is thanks to your hard work.
I differ with the desired results.
Confirm the image.
Cheers
Vinzent
ParticipantHi.
My server is ssh key file access.
So you were trying to do something for the server connection is not possible.
I’m not a server expert.Depression but again made a new test server.
I can not fix the settings, but good at deleting and creating new ones.Server IP: http://188.166.184.245/
WordPress username: kleo
Wordpress password: kleo_kleosftp: 188.166.184.245/
id: root
pw: dkssudgktpdyIt was hard.
The good news’ll wait.Vinzent
ParticipantHi,
Thank you for answer.
Here’s the test site.
Once the review is complete, it’s going to be applied to the real server.Happy Christmas!
site: http://128.199.199.248/
id: kleo
pw: welcomekleoVinzent
ParticipantHi,
I tried but did not get satisfactory results.Look at the attached images.
It captured all the processes.01. wp-content / themes / kleo-child / functions.php additional code.
02. Translated from loco-translate.
03. kleo-child folders stored in the translation file
04. There is no change.Please check.
Vinzent
ParticipantHi.
sticky topic was addressed.
Kleo is super sticky topic only display a blue border.
I also wanted a sticky topice blue border.
Anyway, the problem is solved twice.Anything on how to change once the Keymaster in another language?
Es as well as with the blue label in the right.
Let me find a way.Vinzent
ParticipantOh my God.
Once again, to say the test results.
Until recently tested the browser Firefox.
I tested in Internet Explorer and Chrome browsers.It was no problem.
Firefox is the problem?
Once this problem is thought to be a browser issue?So I will exit this topic.
Regards.
Vinzent
ParticipantHi.
Thank you answer first.But you were misunderstood.
Perhaps it’s my fault. I can not speak English well.Look at the attached images.
You’re in the demo page.It’s screen after trying to leave a comment.
Continue looks like that cropped.I’ve explained well?
Vinzent
ParticipantHi.
Does the way you have given you only support English?
Look at the attached images.Anything that appears this way the name I use another language?
For example,
// Keymaster bbp_get_keymaster_role () => array (‘name’ => ‘ķ¤ė§ģ¤ķ° (= Korean to keymaster)’, ‘capabilities’ => bbp_get_caps_for_role (bbp_get_keymaster_role ())),And how blue border is a sticky topic on the forum?
Second attachments like images. -
AuthorPosts