Hi, I am getting a fatal error of PHP Fatal error: Uncaught TypeError: count(): Argument #1 ($value) must be of type Countable|array, null given in...
on the following count line when upgrading from PHP 7.4 to PHP 8:
function orderByDate($items) {
//$tempDate = strtotime($item)...
Hi, I am getting a non-numeric value encountered warning on the line with the + in PHP 7.4. If I change the following from
// Color picker
case "color":
$default_color = '';
if ( isset($value['std']) ) {
if (...
Hi, I am getting a PHP Warning of undefined array key on the following line. Wondering how I can adjust this function to get the warning to go away?
$rows[$key] = $row['id'];
which is inside the following function
function getWorkingPapers() {
if(get_field('working-papers'...
Seems like this worked back in WP 5.4 and then broke in WP 5.5. Found this which seems related although I don't see I am using 'paged'.
https://core.trac.wordpress.org/ticket/50976
Hello, I have an old custom WP site that was working fine running PHP 7.3.9 and WP 4.9.18 and since upgrading to PHP 7.4.21 and WP 5.6.10 the archive links by year to access older data are no longer doing anything other than reloading the same page. I was wondering if someone might be able to...
Hi, how can I triple nest quotes so
jQuery(".navigation a[href*=#"+rnrSection+"]").parent().addClass("active");
has quotes around the # sign?
I am getting an
Uncaught Error: Syntax error, unrecognized expression: .navigation a[href*=#”+rnrSection+”]
that I think has to do with that.
Hi, I have some old PHP code I am trying to sort through and it is for pulling 3 upcoming events and I guess it was written so todays event doesn't show and am trying to fix that. I was wondering if anyone can make sense of this?
<ul>
<?php $urlSplits =...
Hey, was wondering if someone might be able to rummage through the following and provide some insight as to why this custom RSS feed aggregation code is returning the current date and not the actual pub date? The key variable here is $cleanDate I believe. This is using some older RSS aggregation...
I think this?
// read feed from xml
function xmlFeed($section) {
$rss = new rss_php;
$feedURL = site_url().'/'.$section.'.xml';
$rss->load($feedURL);
return $rss->getItems();
}
Can I just add something to the first snippet like for ($i = 0; $i < count($items) < 12; $i++) { or...
Hi, the following works fine but I’d like to limit the max number of items pulled at a given time? Wondering how to do this?
function rssNews() {
$items = xmlFeed('research');
$items = orderByDate($items);
$output = '';
$output = '<ul id="rssnews">';
if (count($items) >= 2)...
Hey, I am working on an old site that was using hammer.js v1.0.5 (https://hammerjs.github.io/) and jQuery 1.8.3. I am currently trying to upgrade hammer to the newest version (v2.0.8 > https://hammerjs.github.io/dist/hammer.min.js) and jQuery 1.12.4 w/ Migrate and am getting an Uncaught...
Took out $paperCounter for now to try and get 1 random one pulled and have it functioning with the exception of the get_image_with_alt line. Any clue how I could pull 2 randoms, and adjust that line? Feel like I am getting close but need a bit of help.
function getLatestPhotos() {...
Hey, I have this PHP/ACF code for WP that pulls the latest 2 entries and am wondering how to adjust this so it would just pull random entries instead. Thanks!
function getLatestPhotos() {
if(get_field('photos', 34)) {
$latestPhotos = '<ul class="photo-list">';
$paperCounter...