Search Results for 'ie'

  • Author
    Search Results
  • #144668

    This appears to me to be a bug that is possibly being caused by a combination of Parabola and the latest WordPress update. I have a CRON job that includes wp-load.php. When the CRON job runs now it generates the following error:

    PHP Warning: Trying to access array offset on value of type null in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 57 PHP Warning: Trying to access array offset on value of type null in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 101 PHP Warning: Undefined array key “parabola_totalSize” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 103 PHP Warning: Undefined array key “parabola_fpsliderwidth” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 105 PHP Warning: Undefined array key “parabola_fpsliderheight” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 105 PHP Warning: Undefined array key “parabola_colimagewidth” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 106 PHP Warning: Undefined array key “parabola_colimageheight” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 106 PHP Warning: Undefined array key “parabola_totalSize” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 112 PHP Warning: Undefined array key “parabola_sidewidth” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 320 PHP Warning: Undefined array key “parabola_sidebar” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 320 PHP Warning: Undefined array key “parabola_nrcolumns” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 322 PHP Warning: Undefined array key “parabola_colimageheight” in /home/dh_hxn249/rainsnap.org/wp-content/themes/parabola/includes/theme-setup.php on line 331

    I have confirmed that:
    1. All plugins as well as WordPress are up to date.
    2. This error arises even if the only code called by the CRON job are the two lines that include wp-load.php:
    $path = preg_replace( ‘/wp-content.*$/’, ”, __DIR__ );
    include($path . ‘wp-load.php’);
    3. This issue goes away if another theme is activated.

    It would be great if you could fix this bug, or advise me on how to change my code to avoid creating this issue. Including wp-load.php should not cause an error. This CRON job has been running without issues for months now, until I started getting this error a few weeks ago, I think when I updated to the latest version of WordPress. I tried rolling back to an earlier version of Parabola and that did not fix the issue.

    kotterst
    Power User

    Hello friends,

    Looking for some assistance on getting the product titles in my woocommerce product block to center. I’ve tried a few things but am running out of ideas

    #144508

    Hi,

    I’ve made sure that my desktop version is responsive and perfectly suited to mobile phones, so I would like to disable the mobile version and only display the desktop version whatever the devices used. I want to do that because my mobile version is “ugly”.

    Do you have any idea of how I could do that?

    Thanks in advance for your help :).

    #144481
    This reply is private.
    #144186

    It seems since the 1.8.2 Tempera update that the captioned block images are not formatted properly. The images do not fill the extent of the block and the blocks vary in size when they are specified as thumbnails.

    #144172
    AQZ

    Demo Content to be precise. I want all the demo content I saw on Bravada plus to be applied to my page. Its the whole reason I bought it.

    #143998

    The Force mobile menu on iOS mobile devices does not work. My wife has an iPad and the menu does not appear as a burger. It carries over to the following line and is hidden by the slider.


    #143996

    I have just started using Rosetta and I am using a slider on the landing page which unfortunately does not show the full image on an iOS phone. When using FF mobile view the images work fine. When using an actual phone they seem to be “zoomed” or “cropped”. I have tried multiple settings on the slider but to no avail. Any help would be great.


    #143851

    good morning, I’m using the nirvana theme.
    The categories page has incorrect formatting in the font size resulting in it being excessively large, how can this be resolved?

    Thanks
    Elisa

    Alanpalazon
    Power User

    Hi. My issue is that when I click the hamburger menu button to bring up the side menu, my site logo disappears. This is because I have the side menu background colour set to white and my logo is also white.

    Therefore, when the side menu is showing, I want to load a different colour logo image so that it stands out against the white background. When the side menu is not showing, I want my normal white logo image to display.

    I am trying to do this dynamically with JavaScript and CSS, so far to no avail. The HTML elements that I’m trying to work with are the main menu <nav> element which has an id of “#mobile-menu” and the site logo element that has the class of “.custom-logo”.

    When I look in dev tools, as far as I can tell, the way that the side menu appears is that when the hamburger menu button is clicked, a CSS class of ‘.burgermenu-active’ is dynamically added to the main menu nav bar which gives the nav bar new styling turning it into the side menu. Here’s the HTML: <nav id=”mobile-menu” tabindex=”-1″ class=”burgermenu-active”></nav>.

    And when you exit the side menu, the CSS class ‘.burgermenu-active’ is removed and the nav bar returns to its normal main menu state. Here’s the HTML for that: <nav id=”mobile-menu” tabindex=”-1″ class=””></nav>.

    What I’m trying to do with my solution is to check whether the main menu <nav> element has the CSS class of ‘burgermenu-active’. If it does, then it means that the side menu is currently showing. Therefore, I then want to target the site logo element and change its content url by adding a new CSS class of ‘.side-menu-logo’ to the element that applies the desired styling. When I exit the side menu, the CSS class that I have dynamically added to the site logo element should then be dynamically removed and my normal site logo should display.

    I have tried the following solution to no avail. Can someone tell me where I’m going wrong or suggest an alternative solution, perhaps one that only requires CSS, as that would be much lighter page speed-wise etc. I only have basic knowledge of web design so my ability to think of a solution is limited.

    ————————————————————————————————–


    JS

    const burgerNav = document.getElementById(“mobile-menu”); /* This is the main menu <nav> element I want to target */

    const siteLogo = document.querySelector(“img.custom-logo”); /*This is the site logo element I want to change when the side menu is showing*/

    var hasClassName = burgerNav.classList.contains(“burgermenu-active”); /*This checks if the main menu <nav> element has the CSS class of ‘burgermenu-active’*/

    if (hasClassName){
    siteLogo.classList.add(‘side-menu-logo’);
    } else {
    siteLogo.classList.remove(“side-menu-logo”);
    }


    CSS

    img.side-menu-logo {

    content: url(“https://www.aworldover.com/wp-content/uploads/2023/05/blog-logo-black-240-240.png&#8221;); /*the new logo to display when side menu is showing*/

    }

    ————————————————————————————————–

    Hopefully I’ve explained myself clearly. Let me know if I need to explain something differently. And please feel free to see the issue for yourself on my website by clicking the side menu button.

    Thanks

    #143740
    Alanpalazon
    Power User

    I had the same issue and it’s easily solved with a CSS media query. Add this to the custom CSS panel in the theme customiser.
    ————————————-

    @media screen and (max-width: 650px)
    #lp-text-one {
    padding-top: 50px;
    }

    ———————————–

    Note that if you change the order of the text boxes on your landing page you’ll need to change the HTML id that you target with the above code so that the correct tex area is modified.

    #143405

    Hello, and thanks for your time replying to my post.

    Maybe you’re talking about another theme or about an older version…, because “fl-landing-container” or “fl-landing-block” do not appear to exist… The blocks container seems to be “lp-blocks-inside”, if I’m not mistaken.

    Anyway, if that CSS code is applied to “lp-blocks-inside”, it breaks the mobile version, causes the blocks to appear streched side by side on mobile.

    Thanks anyway…

    Hello! First of all, I find the theme very beautiful and suitable for my project idea. Unfortunately, I’ve noticed that the metadata icons from the WPMovieLibrary plugin are not being displayed on the page. However, this works in other themes. What could be the reason for this display error, and what actions could I take to ensure that the icons are displayed correctly?

    “Klicke auf ein Icon für mehr”

    Mfg
    Fensal

    #142696

    In reply to: Bravado – Page Title

    Steve Procter
    Power User

    We are both in the same situation, and I bet there are many others who rely on these themes for clients.
    To just drop the ball like this after being a customer for so many years is absolutely disgusting.

    I am yet to find an alternative I am happy with, and that’s a massive issue as we move through new technologies as the day will come when the sites stop working. Likewise, I’m not a PHP dev, so I have no idea how to fix the issues we are already starting to have 🙁

    I hope you can find a solution
    Steve

    #142680

    In reply to: Bravado – Page Title

    Steve Procter
    Power User

    Sadly not, our previous emails directly to Cryout, and our messages on here have all been ignored 🙁
    I am now being forced to look for new Themes for my clients.

    #142112
    Peter van Cooten
    Power User

    I have been using Fluida Plus for quite some years now, and now I’m considering to update from 1.8.2 to 1.8.8. (mainly because I see a lot of ‘deprecated’ warnings for the Fluida theme in the WP Debug.log).
    Since the theme is heavily modified and configured (also using a child theme for some settings), I don’t want to lose my settings and keep the site as it is now (https://www.ambientblog.net).
    Is it safe to upgrade without losing the configuration, or do I have to reconfigure the site after upgrading?

    Also, I see some concerns about the Fluida Plus theme not currently being maintained or supported anymore (the latest version being more than a year old now). I am happy with how my site looks currently, and don’t want to switch to another theme, unless absolutely necessary.

    I’d like to know your opinion: are there any experiences with upgrading the modified theme? Is it safe to do without losing the current formatting? Will it solve the ‘deprecated’ errors for now?

    Hope to learn from your previous experiences.

    (Wanted to ask this at Cryout support too but it seems they can’t be reached without a current subscription)

    #142003
    TigerWolf
    Power User

    Hello,

    I have an issue with my theme, suddenly the menu on mobile isn’t working correctly. The color behind the menu when opening stays grey/black and not dba240, only when another menu is opend the color appears.
    For example:
    Good-> Desktop-browser: When holding my mouse on ”De wolf” the background color changes to dba240, hold it on ”biologie” and the color is still dba240
    Bad-> Mobile phone: When tapping on the menu to open it, and tap on ”De wolf” the background color does not change, the color of the font does change so now it is hard to read. Tapping on ”Biologie” the background changes how it should do before.

    I hope u understand me, and know a solution for me.

    Kind regards,
    Martijn

    #141771
    Drobb
    Power User

    Hi Zed — Sorry, just to close the loop on this one, I visited that page several times and I just couldn’t follow it. Then I returned some bare-bones troubleshooting and realized that everything I posted above is working just fine. That color I used, #eedddd, looks “processed/filtered” just because that’s the way this color looks. I tried with many other colors and everything works as expected. So, others may be able to use the code above to customize their pagination buttons as they see fit.

    #141762

    Thanks. I believe that the CSS added to the customiser is not applied to the backend, but only to the frontend.

    Either way, I’ve resolved this by creating a plugin, and adding the CSS to the backend via the plugin.

    #141726
    Rocky Trifari
    Power User

    Hi Steve,

    Thanks for the message. Lack of support has been a huge concern for me in 2023 as I’ve really grown to love Fluida Plus over the years and I would MUCH prefer to not switch away if that’s at all possible. You are right though, Priority Support should be treated as such.

    I’ve been trying to give Zed the benefit of the doubt. Historically, Zed has always been fast to reply and fix bugs. I did get a reply from him maybe one month ago where he addressed being aware of some incompatibilities with the latest WordPress release and he stated he has been working on fixing it. I sent a follow-up email though because I never saw any theme updates and that follow-up email went unanswered.

    I have no information beyond that. I’m really hoping the theme was not abandoned because I’ve dedicated years to customizing and building a website off of Zed’s theme templates. I’m just hoping maybe something came up that required his attention and that he will soon return. That’s my hope, anyway.

    Rocky

    #141724
    Steve Procter
    Power User

    Hi Rocky,
    looks like we are in the same boat, no replies to emails anymore, no replies to posts on the forums.
    We pay an annual fee for updates and support, but we are not getting any of this.
    Sadly, after many years supporting Zed, it looks like we have to find a new provider for our themes 🙁

    #141619

    In the editor, the title and heading are displayed as normal font instead of heading font style.
    I tried other themes, they can display the heading correctly.

    #141514
    MikeEckman
    Power User

    Carrie, I found a workaround to make that text go away.

    Go into Appearance, Customize, then when in the Customizer, go to Post Information, Meta Information, and uncheck the box for Display Comments.

    Disabling that option will make the itemprop=”discussionURL” text go away, but it also takes away the count of how many comments are on each post. If you can live with losing that number, you can get rid of the text that is showing up now.

    Hopefully someone fixes this as this is almost certainly only the beginning of more defects that will show up as WordPress is updated, but these themes are not.

    #141503
    Steve Procter
    Power User

    The other issue with this theme, is it’s pulling info to the Landing Page from the MACHINES PAGE for example, but for some reason it is making all the text centred, but on the MACHINES PAGE it is justified and looks exactly how we want it to look, can this also be changed?
    Thanks

    #141487
    Steve Procter
    Power User

    Hi Zed,
    I am posting in here because we have submitted two PRORITY support requests over two weeks and had no answer.
    I’m curious as to if Cryout are shutting down as my annual fee is due but I’m dubious about spending the money with a company who are not responding to help requests.

    The issue we are having is on the landing page, it is showing the page titles even though they are all disabled as much as we can on the customizer, and because the client wants a designed header it is duplicating the text, we need a way to turn this off please.

    We are using this as a temporary domain, but you can see on there that the titles have duplicated.
    http://www.steveprocter.co.uk

    We have tried lots of CSS but none does what we hoped, so can someone please help as we may lose the client if we cannot go live, and I will of course NOT renew if I get no support from Cryout.

    #141295

    I prefer to not use Elementor. But, the block editor is 100 pixels wide.

    This is a consequence of the following CSS that’s applied in the admin area of my WordPress installation:

    body.mce-content-body, .wp-block {
    max-width: 100px;
    font-family: ‘Source Sans Pro’;
    font-weight: 400;
    font-size: 17pxpx;
    line-height: 1.8;
    color: #777777;
    }

    How do I adapt this, without changing the core theme files?

    #141124
    MikeEckman
    Power User

    I am experiencing the same problem after going to 6.3. It only shows on my Search Results page. I tried changing from 3×3 to 2×2 and it was still there. I am using Septera Plus. My site is:

    https://mikeeckman.com

    Website: mikeeckman.com

    #141123

    Hallo. I am having problems with the space top and bottom on my website front page. I tried a few css style but it not working. Can anyone help me?

    #140509

    Solved!!!
    A friend discovered that there is a bug in the theme’s translation files. A value is not accepted (% 1 $ dpx). PHP 7.4 still forgave the error, but 8.1 no longer allowed it in our opinion. He recompiled the .mo and .po files and I overwrote the existing ones.
    So the theme really works on PHP 8.1 as well.

    #140504

    This is line 284:
    ‘description’ => sprintf(__(‘Only drag [Cryout Column] widgets here. Recommended size for uploaded images: %1$dpx (width) x %2$dpx (height). Go to the Tempera Settings page >> Presentation Page Settings >> Columns to edit sizes and more.’,’tempera’ ), $temperas[‘tempera_colimagewidth’],$temperas[‘tempera_colimageheight’]),

    A friend of mine tried Tempera in a test WP server. He cannot activate the theme, same error(PHP 8.1 and apache).
    So it is a compatibility issue after all?
    Please help, this is a school’s homepage, the will need it in august.
    Or is there a way to migrate a newer theme of yours?

Viewing 30 results - 61 through 90 (of 3,208 total)