- 0
Convert HTML Tags to DIV Tags

Asked by
Lowell Klassen,
-
Recently Browsing 0 members
- No registered users viewing this page.
-
Posts
-
By David Uzondu · Posted
The dev is a snowflake for deciding that a project he’s not getting paid to do isn’t worth the attacks? Interesting. -
By Usama Jawad96 · Posted
Microsoft explains how organizations can use Intune to upgrade from Windows 10 to Windows 11 by Usama Jawad The timer for Windows 10's end of life is counting down and while organizations can pay for Extended Security Updates (ESU), it might not be financially feasible for them to do so. In cases like these, it is in both the enterprise customer and Microsoft's benefit to upgrade to Windows 11 as seamlessly as possible. To that end, the Redmond tech giant has published a detailed guide explaining how companies can upgrade to Windows 11 through Intune. Microsoft has emphasized that this guide is primarily intended for domain-joined or co-joined Windows 10 PCs in order to perform a cloud-native migration to a state where the device is running on Windows 11 and is Entra-joined with Intune. To get started, customers obviously need to confirm that their hardware meets the requirements for Windows 11, which includes the dreaded TPM 2.0. This can be confirmed through Microsoft Configuration Manager or Endpoint Analytics in Intune. In addition, tools like Windows Autopatch, Configuration Manager, and Windows Server Update Services (WSUS) should be employed to update Windows 10 devices to the latest supported version, which is version 22H2. IT admins should also synchronize identities from Active Directory (AD) to Entra ID, configure and validate a hybrid join, prepare the Intune environment with the required licenses and admin roles, and enable co-management in Intune and Configuration Manager. Next, Group Policy Objects (GPOs) should be rationalized, redundant policies should be replaced, Intune configuration profiles should be set up, and Intune policies should be configured to deploy the update in phases. Then, Windows Autopatch should be leveraged to deliver the update and monitor the rollout. Applications should also be migrated from Configuration Manager to Intune for packaging, testing, deploying, and assigning them to the correct device groups. IT admins should also be vigilant in decommissioning the old deployments in Configuration Manager and updating the relevant documentation. The final step of this process involves transitioning from a domain network-joined setup to Entra ID-joined. This is a multi-step process, so make sure to check out the details here. Microsoft believes that this cloud-native migration approach will ensure centralized and streamlined management, enhanced security, an optimized UX, reduced reliance on legacy infrastructure, and allow IT admins to leverage Copilot in Intune. -
By Jim K · Posted
^ this (though I use Firefox). So tired of this "AI" being shoved into every damn thing. Copilot/Gemini....sick of it all. I am fully convinced it's just a way to mine and sell your data... unfettered ... under the guise of AI. I hate conspiracy theories...but there it is. -
By noobient · Posted
This is really the snowflake generation, isn’t it yes, whatever you do publicly, there will always be haters. Sad but true. Yes, I’ve lead such a project too. -
By Mirojane · Posted
I ran into this before. Clearing the cache and restarting my computer fixed it.
-
-
Recent Achievements
-
NeoWeen earned a badge
Week One Done
-
BA the Curmudgeon earned a badge
One Month Later
-
Doreen768 earned a badge
First Post
-
James_kobe earned a badge
One Month Later
-
James_kobe earned a badge
Week One Done
-
-
Popular Contributors
-
Tell a friend
Question
Lowell Klassen
Hi Guys,
I'm looking to convert the following an ACF Table that outputs <tr>. <td>, etc. tags, into div tags, so that it's responsive in my WordPress website.
Can anyone help me?
<!--CODE STARTS-->
<?php $table = get_field( 'table1' );
if ( $table ) {
echo "<div style=\"text-align:center\">";
echo '<table>';
if ( $table['header'] ) {
echo '<thead><tr>';
echo '';
foreach ( $table['header'] as $th ) {
echo '<th>';
echo $th['c'];
echo '</th>';
}
echo '</tr>';
echo '</thead>';
}
echo '<tbody>';
foreach ( $table['body'] as $tr ) {
echo '<tr>';
foreach ( $tr as $td ) {
echo '<td>'.$td['c'].'</td>';
}
echo '</tr>';
}
echo '</tbody>';
echo '</table>';
} ?>
<?php the_field( '' ); ?>
<!--CODE ENDS-->
If you could help me out, I would greatly appreciate it. Thanks!
This is where it is now at the bottom of the page. I would like to center it too: https://www.schnellindustries.ca/lowell/conveyors/
- Lowell
Link to comment
https://www.neowin.net/forum/topic/1393587-convert-html-tags-to-div-tags/Share on other sites
1 answer to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now