<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 xmlns:dc="http://purl.org/dc/elements/1.1/"
 xmlns:content="http://purl.org/rss/1.0/modules/content/"
 xmlns:atom="http://www.w3.org/2005/Atom"
>
	<channel>
		<copyright>Copyright 1998 - 2026 DPG Media B.V.</copyright>
		<pubDate>Mon, 11 May 2026 04:39:55 GMT</pubDate>
		<lastBuildDate>Mon, 11 May 2026 04:39:55 GMT</lastBuildDate>
		<description>GoT - list_messages</description>
		<image>
			<link>https://gathering.tweakers.net/</link>
			<title>Gathering of Tweakers</title>
			<url>https://tweakers.net/g/if/logo.gif</url>
		</image>
		<language>nl-nl</language>
		<link>https://gathering.tweakers.net/rss/list_messages/2079486</link>
		<atom:link href="https://gathering.tweakers.net/rss/list_messages/2079486" rel="self" type="application/rss+xml" />
		<title>Code in functions.php - Softwareontwikkeling - GoT</title>
		<webMaster>gathering@tweakers.net (Administrator)</webMaster>
		<item>
			<title>Woy</title>
			<link>https://gathering.tweakers.net/forum/list_message/67938972#67938972</link>
			<description>Hallo @Derichen, welkom op het forum. Ik ga dit topic helaas sluiten, want het vodoet in deze vorm niet aan onze richtlijnen.

Ten eerste zien we graag dat je code in [code=taal][/] tags post, dan is het beter leesbaar. Maar dan zien we ook graag dat je alleen een klein stukje relevante voorbeeld code laat zien, en niet volledige lappen zoals je hier doet.

Daarbij zien we ook graag dat je wat duidelijker aangeeft wat er precies mis gaat ( Want je krijgt ongetwijfeld iets van logging of foutmeldingen, &quot;werkt dit niet&quot; is nogal vaag wat dat betreft ), en wat je verder geprobeerd hebt om dat op te lossen.

Lees ook even de De Quickstart door, daar leggen we verder uit wat we verwachten.

Als je je daar aan houdt kun je gewoon een nieuw topic openen.</description>
			<content:encoded><![CDATA[Hallo @<a href="https://tweakers.net/gallery/1637908/">Derichen</a>, welkom op het forum. Ik ga dit topic helaas sluiten, want het vodoet in deze vorm niet aan onze richtlijnen.<br>
<br>
Ten eerste zien we graag dat je code in [code=taal][/] tags post, dan is het beter leesbaar. Maar dan zien we ook graag dat je alleen een klein stukje relevante voorbeeld code laat zien, en niet volledige lappen zoals je hier doet.<br>
<br>
Daarbij zien we ook graag dat je wat duidelijker aangeeft wat er precies mis gaat ( Want je krijgt ongetwijfeld iets van logging of foutmeldingen, &quot;werkt dit niet&quot; is nogal vaag wat dat betreft ), en wat je verder geprobeerd hebt om dat op te lossen.<br>
<br>
Lees ook even de <a href="https://gathering.tweakers.net/forum/faq/beleid#quickstart" rel="external">De Quickstart</a> door, daar leggen we verder uit wat we verwachten.<br>
<br>
Als je je daar aan houdt kun je gewoon een nieuw topic openen.]]></content:encoded>
			<dc:creator>Woy</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/67938972#67938972</guid>
			<pubDate>Mon, 05 Jul 2021 06:52:04 GMT</pubDate>
		</item>
		<item>
			<title>Derichen</title>
			<link>https://gathering.tweakers.net/forum/list_message/67938886#67938886</link>
			<description>Goeiemorgen,

Ik heb een probleem met mijn wordpress-site.
Voor de mobiele versie zou ik graag alle producten op 1 pagina krijgen. (enkel op de mobiele versie)

Online heb ik hiervoor volgende code gevonden en zelf wat aangepast:

if(wp_is_mobile() ) {

add_filter( &#039;loop_shop_per_page&#039;, &#039;new_loop_shop_per_page&#039;, 20 );

	function new_loop_shop_per_page( $cols ) {
  	// $cols contains the current number of products per page based on the value stored on Options -&gt; Reading
  	// Return the number of products you wanna show per page.
  	$cols = 180;
  	return $cols;
	}
}

Deze code zou moeten worden geplakt in de functions.php file en dan normaal gezien werken, maar bij mij werkt dit niet.

Het thema dat ik gebruik is Astra en de huidige functions.php ziet er als volgt uit (zonder mijn code):

&lt;?php
/**
 * Astra functions and definitions
 *
 * @link https://developer.wordpre...s/basics/theme-functions/
 *
 * @package Astra
 * @since 1.0.0
 */

if ( ! defined( &#039;ABSPATH&#039; ) ) {
	exit; // Exit if accessed directly.
}


/**
 * Define Constants
 */
define( &#039;ASTRA_THEME_VERSION&#039;, &#039;3.6.2&#039; );
define( &#039;ASTRA_THEME_SETTINGS&#039;, &#039;astra-settings&#039; );
define( &#039;ASTRA_THEME_DIR&#039;, trailingslashit( get_template_directory() ) );
define( &#039;ASTRA_THEME_URI&#039;, trailingslashit( esc_url( get_template_directory_uri() ) ) );


/**
 * Minimum Version requirement of the Astra Pro addon.
 * This constant will be used to display the notice asking user to update the Astra addon to the version defined below.
 */
define( &#039;ASTRA_EXT_MIN_VER&#039;, &#039;3.5.0&#039; );

/**
 * Setup helper functions of Astra.
 */
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-theme-options.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/class-theme-strings.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/common-functions.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-icons.php&#039;;

/**
 * Update theme
 */
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-theme-update.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/astra-update-functions.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-theme-background-updater.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-pb-compatibility.php&#039;;


/**
 * Fonts Files
 */
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-font-families.php&#039;;
if ( is_admin() ) {
	require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-fonts-data.php&#039;;
}

require_once ASTRA_THEME_DIR . &#039;inc/lib/webfont/class-astra-webfont-loader.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-fonts.php&#039;;

require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/custom-menu-old-header.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/container-layouts.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/astra-icons.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-walker-page.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-enqueue-scripts.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/class-gutenberg-editor-css.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/inline-on-mobile.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-dynamic-css.php&#039;;

/**
 * Custom template tags for this theme.
 */
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-attr.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/template-tags.php&#039;;

require_once ASTRA_THEME_DIR . &#039;inc/widgets.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/theme-hooks.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/admin-functions.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/sidebar-manager.php&#039;;

/**
 * Markup Functions
 */
require_once ASTRA_THEME_DIR . &#039;inc/markup-extras.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/extras.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/blog/blog-config.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/blog/blog.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/blog/single-blog.php&#039;;

/**
 * Markup Files
 */
require_once ASTRA_THEME_DIR . &#039;inc/template-parts.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-loop.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-mobile-header.php&#039;;

/**
 * Functions and definitions.
 */
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-after-setup-theme.php&#039;;

// Required files.
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-admin-helper.php&#039;;

require_once ASTRA_THEME_DIR . &#039;inc/schema/class-astra-schema.php&#039;;

if ( is_admin() ) {

	/**
	 * Admin Menu Settings
	 */
	require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-admin-settings.php&#039;;
	require_once ASTRA_THEME_DIR . &#039;inc/lib/notices/class-astra-notices.php&#039;;

	/**
	 * Metabox additions.
	 */
	require_once ASTRA_THEME_DIR . &#039;inc/metabox/class-astra-meta-boxes.php&#039;;
}

require_once ASTRA_THEME_DIR . &#039;inc/metabox/class-astra-meta-box-operations.php&#039;;

/**
 * Customizer additions.
 */
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-customizer.php&#039;;

/**
 * Astra Modules.
 */
require_once ASTRA_THEME_DIR . &#039;inc/modules/related-posts/class-astra-related-posts.php&#039;;

/**
 * Compatibility
 */
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-jetpack.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/woocommerce/class-astra-woocommerce.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/edd/class-astra-edd.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/lifterlms/class-astra-lifterlms.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/learndash/class-astra-learndash.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-beaver-builder.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-bb-ultimate-addon.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-contact-form-7.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-visual-composer.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-site-origin.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-gravity-forms.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-bne-flyout.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-ubermeu.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-divi-builder.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-amp.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-yoast-seo.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/addons/transparent-header/class-astra-ext-transparent-header.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/addons/breadcrumbs/class-astra-breadcrumbs.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/addons/heading-colors/class-astra-heading-colors.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/builder/class-astra-builder-loader.php&#039;;

// Elementor Compatibility requires PHP 5.4 for namespaces.
if ( version_compare( PHP_VERSION, &#039;5.4&#039;, &#039;&gt;=&#039; ) ) {
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-elementor.php&#039;;
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-elementor-pro.php&#039;;
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-web-stories.php&#039;;
}

// Beaver Themer compatibility requires PHP 5.3 for anonymus functions.
if ( version_compare( PHP_VERSION, &#039;5.3&#039;, &#039;&gt;=&#039; ) ) {
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-beaver-themer.php&#039;;
}

require_once ASTRA_THEME_DIR . &#039;inc/core/markup/class-astra-markup.php&#039;;

/**
 * Load deprecated functions
 */
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-filters.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-hooks.php&#039;;
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-functions.php&#039;;

Weet iemand wat ik fout doe? Of bestaat er geen CSS-code die ik kan gebruiken in de plaats?

Merci,</description>
			<content:encoded><![CDATA[Goeiemorgen,<br>
<br>
Ik heb een probleem met mijn wordpress-site.<br>
Voor de mobiele versie zou ik graag alle producten op 1 pagina krijgen. (enkel op de mobiele versie)<br>
<br>
Online heb ik hiervoor volgende code gevonden en zelf wat aangepast:<br>
<br>
<b>if(wp_is_mobile() ) {<br>
<br>
add_filter( &#039;loop_shop_per_page&#039;, &#039;new_loop_shop_per_page&#039;, 20 );<br>
<br>
	function new_loop_shop_per_page( $cols ) {<br>
  	// $cols contains the current number of products per page based on the value stored on Options -&gt; Reading<br>
  	// Return the number of products you wanna show per page.<br>
  	$cols = 180;<br>
  	return $cols;<br>
	}<br>
}</b><br>
<br>
Deze code zou moeten worden geplakt in de functions.php file en dan normaal gezien werken, maar bij mij werkt dit niet.<br>
<br>
Het thema dat ik gebruik is Astra en de huidige functions.php ziet er als volgt uit (zonder mijn code):<br>
<br>
<b>&lt;?php<br>
/**<br>
 * Astra functions and definitions<br>
 *<br>
 * @link <a href="https://developer.wordpress.org/themes/basics/theme-functions/" rel="external nofollow" title="https://developer.wordpress.org/themes/basics/theme-functions/">https://developer.wordpre...s/basics/theme-functions/</a><br>
 *<br>
 * @package Astra<br>
 * @since 1.0.0<br>
 */<br>
<br>
if ( ! defined( &#039;ABSPATH&#039; ) ) {<br>
	exit; // Exit if accessed directly.<br>
}<br>
<br>
<br>
/**<br>
 * Define Constants<br>
 */<br>
define( &#039;ASTRA_THEME_VERSION&#039;, &#039;3.6.2&#039; );<br>
define( &#039;ASTRA_THEME_SETTINGS&#039;, &#039;astra-settings&#039; );<br>
define( &#039;ASTRA_THEME_DIR&#039;, trailingslashit( get_template_directory() ) );<br>
define( &#039;ASTRA_THEME_URI&#039;, trailingslashit( esc_url( get_template_directory_uri() ) ) );<br>
<br>
<br>
/**<br>
 * Minimum Version requirement of the Astra Pro addon.<br>
 * This constant will be used to display the notice asking user to update the Astra addon to the version defined below.<br>
 */<br>
define( &#039;ASTRA_EXT_MIN_VER&#039;, &#039;3.5.0&#039; );<br>
<br>
/**<br>
 * Setup helper functions of Astra.<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-theme-options.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-theme-strings.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/common-functions.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-icons.php&#039;;<br>
<br>
/**<br>
 * Update theme<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-theme-update.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/astra-update-functions.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-theme-background-updater.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/theme-update/class-astra-pb-compatibility.php&#039;;<br>
<br>
<br>
/**<br>
 * Fonts Files<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-font-families.php&#039;;<br>
if ( is_admin() ) {<br>
	require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-fonts-data.php&#039;;<br>
}<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/lib/webfont/class-astra-webfont-loader.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-fonts.php&#039;;<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/custom-menu-old-header.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/container-layouts.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/astra-icons.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-walker-page.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-enqueue-scripts.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-gutenberg-editor-css.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/dynamic-css/inline-on-mobile.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-dynamic-css.php&#039;;<br>
<br>
/**<br>
 * Custom template tags for this theme.<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-attr.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/template-tags.php&#039;;<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/widgets.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/theme-hooks.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/admin-functions.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/sidebar-manager.php&#039;;<br>
<br>
/**<br>
 * Markup Functions<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/markup-extras.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/extras.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/blog/blog-config.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/blog/blog.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/blog/single-blog.php&#039;;<br>
<br>
/**<br>
 * Markup Files<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/template-parts.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-loop.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-mobile-header.php&#039;;<br>
<br>
/**<br>
 * Functions and definitions.<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/class-astra-after-setup-theme.php&#039;;<br>
<br>
// Required files.<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-admin-helper.php&#039;;<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/schema/class-astra-schema.php&#039;;<br>
<br>
if ( is_admin() ) {<br>
<br>
	/**<br>
	 * Admin Menu Settings<br>
	 */<br>
	require_once ASTRA_THEME_DIR . &#039;inc/core/class-astra-admin-settings.php&#039;;<br>
	require_once ASTRA_THEME_DIR . &#039;inc/lib/notices/class-astra-notices.php&#039;;<br>
<br>
	/**<br>
	 * Metabox additions.<br>
	 */<br>
	require_once ASTRA_THEME_DIR . &#039;inc/metabox/class-astra-meta-boxes.php&#039;;<br>
}<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/metabox/class-astra-meta-box-operations.php&#039;;<br>
<br>
/**<br>
 * Customizer additions.<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/customizer/class-astra-customizer.php&#039;;<br>
<br>
/**<br>
 * Astra Modules.<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/modules/related-posts/class-astra-related-posts.php&#039;;<br>
<br>
/**<br>
 * Compatibility<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-jetpack.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/woocommerce/class-astra-woocommerce.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/edd/class-astra-edd.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/lifterlms/class-astra-lifterlms.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/learndash/class-astra-learndash.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-beaver-builder.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-bb-ultimate-addon.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-contact-form-7.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-visual-composer.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-site-origin.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-gravity-forms.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-bne-flyout.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-ubermeu.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-divi-builder.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-amp.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-yoast-seo.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/addons/transparent-header/class-astra-ext-transparent-header.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/addons/breadcrumbs/class-astra-breadcrumbs.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/addons/heading-colors/class-astra-heading-colors.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/builder/class-astra-builder-loader.php&#039;;<br>
<br>
// Elementor Compatibility requires PHP 5.4 for namespaces.<br>
if ( version_compare( PHP_VERSION, &#039;5.4&#039;, &#039;&gt;=&#039; ) ) {<br>
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-elementor.php&#039;;<br>
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-elementor-pro.php&#039;;<br>
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-web-stories.php&#039;;<br>
}<br>
<br>
// Beaver Themer compatibility requires PHP 5.3 for anonymus functions.<br>
if ( version_compare( PHP_VERSION, &#039;5.3&#039;, &#039;&gt;=&#039; ) ) {<br>
	require_once ASTRA_THEME_DIR . &#039;inc/compatibility/class-astra-beaver-themer.php&#039;;<br>
}<br>
<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/markup/class-astra-markup.php&#039;;<br>
<br>
/**<br>
 * Load deprecated functions<br>
 */<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-filters.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-hooks.php&#039;;<br>
require_once ASTRA_THEME_DIR . &#039;inc/core/deprecated/deprecated-functions.php&#039;;</b><br>
<br>
Weet iemand wat ik fout doe? Of bestaat er geen CSS-code die ik kan gebruiken in de plaats?<br>
<br>
Merci,]]></content:encoded>
			<dc:creator>Derichen</dc:creator>
			<guid isPermaLink="false">https://gathering.tweakers.net/forum/list_message/67938886#67938886</guid>
			<pubDate>Mon, 05 Jul 2021 06:42:20 GMT</pubDate>
		</item>
	</channel>
</rss>