-
Search Results
-
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.
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
Topic: Disable mobile view option
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 :).
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.
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.
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.
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
ElisaHi. 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”); /*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
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
FensalI 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)
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,
MartijnIn 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.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.ukWe 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.
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?
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?