Forum Replies Created

Viewing 30 posts - 1 through 30 (of 47 total)
  • Author
    Posts
  • in reply to: Blog Page Issues #1093951

    Hey Ismael,
    thank you so much for your support! Indeed textfields are editable now on my blog page. Also saving elements or the whole entry as templates works now.

    The solution however is strange. Seems to be an error in wordpress? I feared that the default settings could cause new issues, because they were’nt realistic. So I tested what would happen if I set the right settings again. It also works now! That is really strange.

    The only issue that remains is that old issue as discussed in this thread: masonry-element-only-loads-when-scrolling-the-page-bug. For a period of time it worked with the solution I got from your support team. Since a longer time it is the same again. Maybe that it is only apearing in some browsers. However it’s appearing in firefox and ms edge.

    Best regards,

    lebenspraxis

    in reply to: Blog Page Issues #1093418

    Hi Ismael,
    sorry, but for me it’s the same, nothing has changed, text fields are not editable on my blog page. For sure, on any other page there aren’t any problems and textfields there are editable. Also the masonry element on the blog page does only load on scrolling. I tested the issues with firefox and ms edge. The same thing with both browsers.

    Best regrads,
    lebenspraxis

    Edit: I saw that your link in the private field went to a blog page version that shouldn’t exist. I have had a duplicate uri, which was an accident. Sometimes the system seems to grab an old and deleted template for blog entries and displays it as the body of my blog page. I had deleted the duplicate uri with the permalink manager lite plugin. I had deleted the old template via enfold. It should not exist any longer! I cleared up the database with the Sweep database plugin. I don’t know if this issue I had with the duplicate uri is relevant to the not editable text fields, templates that cannot be saved and a not loading masonry element. By the way, the functionating blog page with the entry-template may indicate that the issue is somehow relating to the masonry element?

    • This reply was modified 5 years, 7 months ago by lebenspraxis.
    in reply to: Blog Page Issues #1092374

    Hi Ismael and colleagues,

    thank you so much for trying to fix this!
    I added login data (private field) for the new ftp-user I created for you. I don’t know of any modifications to enfold or wordpress or I may say I’m not aware of anything I did that could cause this issues. For sure there are several settings in my .htaccess to secure the installation or to speed it up and adapt changes according to pagespeed tests (pagespeed insight, pingdom, gtmetrix).

    Best regards,

    lebenspraxis

    in reply to: Blog Page Issues #1091366

    Hi Ismael,

    thank you for your support that I always appreciate very much!
    Yes, you can temporarily deactivate the pliugins. Only one plugin is a bit tricky to handle if deactivated and activated again: “All in one wordpress security” (AIWOPS). Its settings have to be exported and as I noticed can only be imported by copying the text content of the file and inserting it in the text field for importing. Also it has to be confirmed that AIWOPS shall reinsert its settings into the .htaccess file. It’s important that the security plugin works for there are so many criminals out there attacking our wordpress systems day after day …

    By the way, in the support forum I saw that there are similar Problems with editing text fields in the ALB. See here: text-block-input-not-working-text-disappears

    Best regards,
    lebenspraxis

    in reply to: Blog Page Issues #1090055

    Hey Yigit,

    I tried your suggestion twice. Even if all plugins are deactivated the issue persists. So there seems to be no conflict with plugins. I just describe the issues on my blog site with all aspects once again:

    • Textfields that are added to the page are not editable. For some reasons they sometimes are editable and text can be added, but the normal editor-menu above is always missing.
    • It is impossible to save any element on the page or the whole elements on the workspace as a template. If I try it, I get a notice that says that there aren’t any elements on the workspace.
    • I can’t get any complete preview of the page if I have edit some elements and want to see how it looks.
    • The issue only affects my blog page, that is the page where blog entries ar listed as excerpts in a masonry. All other pages and single blog entries work fine.
    • The masonry with the blog entries is only loading if a user scrolls the page. This issue is appearing on my end in firefox and in ms edge. I asked for support for this some time ago and it seems that this is not appearing in all browsers. The solution of the support team was a script that is in the first code blog on the page. Also there ist a similar function-snippet in the functions.php of my child theme.

    As a workaround I can build elements fo the blog page on other pages, save thgemn as template an add the template to the blog page.
    Would be nice, if somebody could help and find a solution for these blog page issues. (login credentials still work)

    Best regards,

    lebenspraxis

    Hey support team,
    sorry Basilis, but your answer in my opinion is not satisfactory. I waited two and a half days to get this answer! I understand that there are so many questions in the forums every day… Maybe you haven’t read all I wrote and misunderstood? Maybe I better shouldn’t post the whole code for the shortcode I use, makes it seem a great thing. Indeed it is an easy question. You can see here that your colleague Ismael linked to the shortcode I found and use:
    Ismael’s link
    What I asked for is only a few lines of code to add in so that I can display the time when a blog post was last modified. “Hire a freelancer” for something that is easy to give and that many users see as a basic functionality of a wordpress blog can’t be taken as serious. Sorry. I think that there are feature requests for having an ALB element for displaying blog meta infos and I can’t understand why having this isn’t already the case.
    Besides that I by myself without significant programming-skills found a solution!

    if (get_the_modified_date() != get_the_time()) {
    						
    					$output .= '<span class="minor-meta">Aktualisiert am </span>';
    					$output .= '<time class="date-container minor-meta updated" {$markup}>'.get_the_modified_date(get_option('date_format'))."</time>";					
    					$output .= "<span class='text-sep text-sep-date'>/</span>";					
    					}

    It works! Most of this lines was just copying some code that gets the publication date and change it, so that it does the same for the modified date.

    Regards,
    lebenspraxis

    • This reply was modified 5 years, 10 months ago by lebenspraxis.

    Hey Rikard,

    thank you for your quick answer! Your code didn’t work because “word-break” was not the right solution, it had to be “word-wrap” like in Ismael’s code.
    So this could have been the right code:

    .entry-content-wrapper div li {
        word-wrap: break-word;
    }

    I tried it and the words broke and wrapped onto the next line. The only small issue that remained was that the words were not seperated by hyphens into syllables, but broke randomly between the letters. I wondered, if there was a way to achieve seperation into syllables and found a solution on the web. This works perfect for me:

    .entry-content-wrapper div li {
    	  overflow-wrap: break-word;
    	  word-wrap: break-word;
    	  -webkit-hyphens: auto;
    	  -ms-hyphens: auto;
    	  -moz-hyphens: auto;
    	  hyphens: auto;
    	}

    Best regards,
    lebenspraxis

    in reply to: Longer words in columns are overlapping in mobile devices #1012372

    Hey Wisith and Ismael,
    I appologize for going in between! But I have the same issue with the breaking words. Your code, Ismael, works fine except in lists ( ol ) that I put in text areas. What must be completed in the code? Can you give me a hint?

    Best regards,
    lebenspraxis

    Hi Mike,

    great work! Thank you so much! Now it works fine. I will look into how you solved it later. At least it is how I wanted it to be.
    You can close this thread now.

    Best regards,
    lebenspraxis

    Hi Mike,
    I got an error on my site some hours ago caused by the last update of the statify-plugin. Because I worked on some things including .htacces-file I first thought I made a mistake. Took me some time to find out what happened.

    I use Autoptimize for a long time and it is realy good, also cache-enabler. Working fine together.

    The editor was disabled by the hosting provider from the beginning. In the beginning I had a managed wordpress installation. For that I just didn’t know that there normally is such an editor in wordpress. I edited the files via ftp and a desktop editor. I provided ftp-login-credentials for you in an earlier post. For the moment I enable the editor for you. For security reasons I will disable it when the issue is solved.

    Best regards,
    lebenspraxis

    Hi Mike,
    thank you for making videos to see if we’re looking at the same thing! I see that it all works as it should in your test. Have a look at my videos (private content) and you will see that in my test the masonry only loads when I scroll. Before loading the page I clear the browser cache. Strange thing!
    Changing that line in the code had no result. What’s happening here and how can I get it work?

    Best regards,
    lebenspraxis

    Hi Mike,
    the browser cache is not the problem. I always clear all the caches before testing: browser cache, autoptimize, cache enabler.
    On desktop with Firefox and MS Edge it doesn’t work, sorry.

    Best regards,
    lebenspraxis

    Hi Mike,
    thank you very much for writing a code for my blog page! But I’m sorry, the code didn’t work. I put the code into the functions.php of my child-theme without any changes in the behaviour of the blog page. I thougt it should work with the functions.php of the child theme or is that wrong?

    Best regards,
    lebenspraxis

    Hey Mike,

    maybe we could say it‘s about masonry animation, yes. But the animation is really nice and I want to maintain it. The problem is that the animation should start while the page is loaded and not only when the user scrolls the page. If one doesn‘t scroll the page, the masonry and it‘s content do not display. That behaviour will increase the bounce rate and makes no sense for me.

    I didn‘t try your code, because it‘s not what I want.

    Best regards,

    lebenspraxis

    Hey Rikard,

    it’s only appearing on desktop. And yes, I’m sure that this aren’t cached results. I get the same result with Firefox 59.0.3 and MS Edge 41.16299.371.0, both on Windows 10. Masonry is only displaying when scrolling.

    Best regards.
    lebenspraxis

    in reply to: Disable Google Fonts being loaded from Google #955272

    Hi Rikard,

    you can close the topic.

    Thank you all for your support!

    Best regards,

    lebenspraxis

    in reply to: Disable Google Fonts being loaded from Google #954549

    Hi Victoria,
    this is so strange!!! I don’t know what happens. Yes, now I also see all the fonts loading from my server and no link to Google. The connection to Google has gone now without doing anything I know about. Yesterday, still the link to Google showed up in the browser console. The page speed score of gtmetrix meanwhile had gone down to 79 when the fonts were loading both from my server and also from Google. Before it was about 95. Now it’s 99!
    I don’ know why … but that’s what I wanted and I am happy. Serving the fonts from one’s own server is probably the better way for europe because of the european General Data Protection Regulation starting in Germany by the May, 25th.

    Thank you for your support!

    Best regards,
    lebenspraxis

    in reply to: Disable Google Fonts being loaded from Google #953365

    Hi Victora,

    sure, I give you full access to my wordpress and to the ftp-server too.
    Meanwhile the issue has changed a little bit. If I test the site fom gtmetrix or pingdom it seems that the google fonts are loaded correctly from my server and not via google itself. But! If I have a look into the browser console, I see that somehow both is happening. Fonts are loaded from my server, also via connection to google!
    I don’t konw what is happening here and why the fonts in a way are loaded from my server now. For me it seems I didn’t change anything that could be the reason for that. Somehow strange for me. by the way: Before testing with the browser console I deleted the browser cache.

    Best regards,
    lebenspraxis

    in reply to: Disable Google Fonts being loaded from Google #952401

    Hey Basils,

    sorry, I can’t understand what you mean. I am aware that there is no link to google in the file created by autoptimize. I wrote that. But if you use the browser console or do a speed test by gmetrix you see that google is adressed and that the fonts are loaded from google not from my own webspace.Also I deleted the cache of autoptimize and cache enabler many times. For me it seems that the php-code from the support forum does not work and google fonts are’nt disabled. But maybe I misunderstand something. How can I get this work and load the fonts properly from my own wbspace?

    Best regards,
    lebenspraxis

    in reply to: Display author and time above single post entry #933227

    Hi Vinay,
    thank you for your reply. Yes, maybe I will start a feature request.
    You can close this thread.

    Best regards,
    lebenspraxis

    in reply to: Display author and time above single post entry #932460

    Hey Basilis,
    thank you for the link! I did what’s suggested there and it works fine.

    Besides that, this should be included in Enfold itself, because it is realy necessary! I came about this issue because of SEO reasons. My Blog is rather ignored by Google, seems like Google is not able to recognize that it is a blog. Maybe it’s something about the masonry I use on the blog site, maybe it is any other reason. For that and for SEO reasons in general I tried to mark my blog entries with Datahighliter by Google. It creates Markup for presentation as Rich Cards, Carousels, etc..But!!! Datahighliter does not work, if the blog entries’ meta information is not there. It is not enough if meta information is displayed in a widget in the sidebar. Rich Text, Rich Cards etc. become more and more important for SEO! For that the blog post meta element should be included in Enfold as soon as possible! The element should also be editable. Some alignment options would be fine.

    Best regards,
    lebenspraxis

    in reply to: Customize toggle icon color for single toggle #924666

    Hi Jordan Shannon,

    it’s fine now, but I don’t know how it happened.
    As I mentioned above, this css is in my style.css of the child theme:

    .toggle_icon .hor_icon, .toggle_icon .vert_icon {
    border-color: #7b1f50 !important;
    }

    First I deleted the !important-rule in the above css, but it didn’t work. The color of all other toggle icons changed (to white? -> became invisible)
    At least I copied your css into my style.css and I deleted all cache of caching plugins (Cache Enabler and Autoptimize).
    After that it worked. Your css and my css both have the !important rule and there’s no conflict.

    Thanks a lot for your support!

    Best regards.
    lebenspraxis

    in reply to: Customize toggle icon color for single toggle #924168

    Hey Jordan Shannon,
    okay, login credentials for you in private content.

    Best regards,
    lebenspraxis

    in reply to: Customize toggle icon color for single toggle #923788

    Hey Jordan Shannon,
    you can find the link in the private content. It’s about the toggle icon placed in the indigo colored field. As you see, the color is the standard color I defined in my style.css (child theme):

    .toggle_icon .hor_icon, .toggle_icon .vert_icon {
    border-color: #7b1f50 !important;
    }

    Now I want that single toggle icon in white color. Would fit better in the indigo colored field. In the future I would like to cfeate more fields with the indigo background and with white toggle icons. For that I need to know, which element or element-id I have to adress to successfully change the color of the toggle icon.

    Best regards
    lebenspraxis

    in reply to: Increase number of entries in Enfold Latest News Widget #881557

    Thank you so much Nikko!

    I had changed line 239 instead of 647. I didn’t have in mind that there are several widgets with similar menus. Sorry for that! Are there any comments in the code describing for which widget the codelines are? Didn’t notice any. Very nice that it works now!

    Best regards,
    lebenspraxis

    Hi Support-Team,

    meanwhile I could fix the two issues.

    For the first issue I found some css in the forum. This works for me:

    #top .widget ul {
    list-style-type: disc !important;
    padding-left: 15px;
    }

    The second issue was associated with media queries. I just had to move the css layout instructions that only made sense on the desktop to the desktop styles area of the media query.

    You can close this thread,

    Best regards,

    Rigobert

    Hi,
    all is done now! Works fine. My description of the last remaining issue was wrong: I wanted to change (reduce) the line-height in the Latest News Widget, not in the Recent Posts Widget. I found a hint in the forum and could achieve what I wanted. Here’s the CSS that did it:

    .news-link { line-height:1.2 !important; }

    You can close this Thread.

    Thank you very much for your help!

    Rigobert

    Hey Support-Team,

    I ‘ve been successfull in reducing the space to the right edge in the single blog entrie’s site. I did this:

    .single #main .container {
    max-width: 100%;
    width:100%;
    padding-left: 10.8%;
    padding-right: 2.5%;
    }

    Now there are the same settings as on the blog-page and the other pages, except the homepage which has to be special.
    The issue that remains is the adjustment of the line-height of items in the recent posts widget. Any suggestions for that?

    Best regards,
    Rigobert

    Thank you very much for your reply MIke!
    Some suggesgtions you made could be a solution. I need to play around with it to see what could achieve what I want.
    The single blog-entries’ site still has to much space on the right side. Which css elements must I adress to reduce that space?
    Also: What element must be adressed to reduce the line-height of the items in the recent posts widget?

    Best regards,
    Rigobert

    Hey Rikard,
    on my screen it does not look tight as you can see in the screenshots I made. I marked the things that seem to need an adjustment. I refer to the homepage and its left sidebar and there is also a wide right sidebar on the site displaying the blog entries. You can see what I mean and what I want in the screenshots.

    Best regards,
    Rigobert

Viewing 30 posts - 1 through 30 (of 47 total)