<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Forum Pasja Informatyki - Najnowsze z tagiem personalizacja</title>
<link>https://forum.pasja-informatyki.pl/tag/personalizacja</link>
<description>Powered by Question2Answer</description>
<item>
<title>Jak zmienić font systemowy w Windows 11</title>
<link>https://forum.pasja-informatyki.pl/595383/jak-zmienic-font-systemowy-w-windows-11</link>
<description>Jak zmienić font systemowy w Windows 11&lt;br /&gt;
&lt;br /&gt;
Dokładniej chodzi mi o zmianę fontów w eksploratorze plików i pulpicie. Po to, by dodać coś ciekawego do systemu pod względem wyglądu</description>
<category>Systemy operacyjne, programy</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/595383/jak-zmienic-font-systemowy-w-windows-11</guid>
<pubDate>Sun, 28 Jul 2024 17:20:03 +0000</pubDate>
</item>
<item>
<title>nie standardowa personalizacja</title>
<link>https://forum.pasja-informatyki.pl/570070/nie-standardowa-personalizacja</link>
<description>Chciałbym zrobić personalizację pełną gębom.&lt;br /&gt;
&lt;br /&gt;
i nie hodzi mi o tapetę pasek dolny itp. tylko praktycznie całkowitą edycję, nie ryzykując przy tym zepsucia systemu</description>
<category>Sprzęt komputerowy</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/570070/nie-standardowa-personalizacja</guid>
<pubDate>Wed, 27 Jul 2022 14:18:30 +0000</pubDate>
</item>
<item>
<title>Wordpress - konfiguracja slidera w motywie</title>
<link>https://forum.pasja-informatyki.pl/274512/wordpress-konfiguracja-slidera-w-motywie</link>
<description>

&lt;p&gt;Cześć,&lt;/p&gt;



&lt;p&gt;Mam ten darmowy motyw&amp;nbsp;&lt;a href=&quot;https://themeisle.com/demo/?theme=Hestia&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot;&gt;https://themeisle.com/demo/?theme=Hestia&lt;/a&gt;. Chciałbym ustawić karuzele/slider na stronie głównej, żeby zmieniały 3 zdjecia. Nie wiem za bardzo jak, już znalazłem kod(przynajmniej tak mi się wydaje).&lt;/p&gt;



&lt;pre class=&quot;brush:php;&quot;&gt;
&amp;lt;?php
/**
 * Big Title section for the homepage.
 *
 * @package Hestia
 * @since Hestia 1.0
 */

if ( ! function_exists( 'hestia_big_title' ) ) :
	/**
	 * Big title section content.
	 *
	 * @since Hestia 1.0
	 */
	function hestia_big_title() {
		hestia_before_big_title_section_trigger();
	?&amp;gt;
		&amp;lt;div id=&quot;carousel-hestia-generic&quot; class=&quot;carousel slide&quot; data-ride=&quot;carousel&quot;&amp;gt;
			&amp;lt;div class=&quot;carousel slide&quot; data-ride=&quot;carousel&quot;&amp;gt;
				&amp;lt;div class=&quot;carousel-inner&quot;&amp;gt;
					&amp;lt;?php

					if ( current_user_can( 'edit_theme_options' ) ) {
						/* translators: 1 - link to customizer setting. 2 - 'customizer' */
						$hestia_big_title_title = get_theme_mod( 'hestia_big_title_title', sprintf( esc_html__( 'Change in %s','hestia' ), sprintf( '&amp;lt;a href=&quot;%1$s&quot; class=&quot;default-link&quot;&amp;gt;%2$s&amp;lt;/a&amp;gt;', esc_url( admin_url( 'customize.php?autofocus&amp;amp;#91;control&amp;amp;#93;=hestia_big_title_title' ) ), __( 'Customizer','hestia' ) ) ) );
						/* translators: 1 - link to customizer setting. 2 - 'customizer' */
						$hestia_big_title_text = get_theme_mod( 'hestia_big_title_text', sprintf( esc_html__( 'Change this subtitle in %s.','hestia' ), sprintf( '&amp;lt;a href=&quot;%1$s&quot; class=&quot;default-link&quot;&amp;gt;%2$s&amp;lt;/a&amp;gt;', esc_url( admin_url( 'customize.php?autofocus&amp;amp;#91;control&amp;amp;#93;=hestia_big_title_text' ) ), __( 'Customizer','hestia' ) ) ) );
						$hestia_big_title_button_text = get_theme_mod( 'hestia_big_title_button_text', esc_html__( 'Change in the Customizer', 'hestia' ) );
						$hestia_big_title_button_link = get_theme_mod( 'hestia_big_title_button_link', esc_url( admin_url( 'customize.php?autofocus&amp;amp;#91;control&amp;amp;#93;=hestia_big_title_button_text' ) ) );
					} else {
						$hestia_big_title_title       = get_theme_mod( 'hestia_big_title_title' );
						$hestia_big_title_text        = get_theme_mod( 'hestia_big_title_text' );
						$hestia_big_title_button_text = get_theme_mod( 'hestia_big_title_button_text' );
						$hestia_big_title_button_link = get_theme_mod( 'hestia_big_title_button_link' );
					}
					$hestia_big_title_background  = get_theme_mod( 'hestia_big_title_background', get_template_directory_uri() . '/assets/img/slider2.jpg' );

					if ( ! empty( $hestia_big_title_background ) || ! empty( $hestia_big_title_title ) || ! empty( $hestia_big_title_text ) || ( ! empty( $hestia_big_title_button_text ) &amp;amp;&amp;amp; ! empty( $hestia_big_title_button_link ) ) ) {
					?&amp;gt;
						&amp;lt;div class=&quot;item active&quot;&amp;gt;
							&amp;lt;div class=&quot;page-header header-filter&quot; 
							&amp;lt;?php
							if ( ! empty( $hestia_big_title_background ) ) {
								echo 'style=&quot;background-image: url(' . esc_url( $hestia_big_title_background ) . ')&quot;';}
?&amp;gt;
&amp;gt;
								&amp;lt;?php
								if ( is_customize_preview() ) {
								?&amp;gt;
									&amp;lt;div class=&quot;big-title-image&quot;&amp;gt;&amp;lt;/div&amp;gt;
									&amp;lt;?php
								}
								hestia_before_big_title_section_content_trigger();
								?&amp;gt;
								&amp;lt;div class=&quot;container&quot;&amp;gt;
									&amp;lt;div class=&quot;row&quot;&amp;gt;
										&amp;lt;div class=&quot;col-md-8 col-md-offset-2 text-center&quot;&amp;gt;
											&amp;lt;?php if ( ! empty( $hestia_big_title_title ) ) { ?&amp;gt;
												&amp;lt;h1 class=&quot;hestia-title&quot;&amp;gt;&amp;lt;?php echo wp_kses_post( $hestia_big_title_title ); ?&amp;gt;&amp;lt;/h1&amp;gt;
											&amp;lt;?php } ?&amp;gt;
											&amp;lt;?php if ( ! empty( $hestia_big_title_text ) ) { ?&amp;gt;
												&amp;lt;span class=&quot;sub-title&quot;&amp;gt;&amp;lt;?php echo wp_kses_post( $hestia_big_title_text ); ?&amp;gt;&amp;lt;/span&amp;gt;
											&amp;lt;?php } ?&amp;gt;
											&amp;lt;?php if ( ! empty( $hestia_big_title_button_link ) &amp;amp;&amp;amp; ! empty( $hestia_big_title_button_text ) ) { ?&amp;gt;
												&amp;lt;div class=&quot;buttons&quot;&amp;gt;
													&amp;lt;a href=&quot;&amp;lt;?php echo esc_url( $hestia_big_title_button_link ); ?&amp;gt;&quot; title=&quot;&amp;lt;?php echo esc_html( $hestia_big_title_button_text ); ?&amp;gt;&quot;
													   class=&quot;btn btn-primary btn-lg&quot; &amp;lt;?php hestia_is_external_url( $hestia_big_title_button_link ); ?&amp;gt;&amp;gt;&amp;lt;?php echo esc_html( $hestia_big_title_button_text ); ?&amp;gt;&amp;lt;/a&amp;gt;
												&amp;lt;/div&amp;gt;
											&amp;lt;?php } ?&amp;gt;
										&amp;lt;/div&amp;gt;
									&amp;lt;/div&amp;gt;
								&amp;lt;/div&amp;gt;
								&amp;lt;?php hestia_after_big_title_section_content_trigger(); ?&amp;gt;
							&amp;lt;/div&amp;gt;
						&amp;lt;/div&amp;gt;
						&amp;lt;?php
					}// End if().
					?&amp;gt;
					&amp;lt;/div&amp;gt;
				&amp;lt;/div&amp;gt;
			&amp;lt;/div&amp;gt;
			&amp;lt;?php hestia_after_big_title_section_trigger(); ?&amp;gt;
		&amp;lt;/div&amp;gt;
		&amp;lt;?php
	}
endif;

if ( ! function_exists( 'hestia_slider_compatibility' ) ) :

	/**
	 * Check for previously set slider and make theme compatible.
	 */
	function hestia_slider_compatibility() {
		$hestia_big_title_background  = get_theme_mod( 'hestia_big_title_background' );
		$hestia_big_title_title       = get_theme_mod( 'hestia_big_title_title' );
		$hestia_big_title_text        = get_theme_mod( 'hestia_big_title_text' );
		$hestia_big_title_button_text = get_theme_mod( 'hestia_big_title_button_text' );
		$hestia_big_title_button_link = get_theme_mod( 'hestia_big_title_button_link' );

		$hestia_slider_content = get_theme_mod( 'hestia_slider_content' );

		if ( ! empty( $hestia_big_title_background ) || ! empty( $hestia_big_title_title ) || ! empty( $hestia_big_title_text ) || ! empty( $hestia_big_title_button_text ) || ! empty( $hestia_big_title_button_link ) ) {
			hestia_big_title();
		} else {
			if ( ! empty( $hestia_slider_content ) ) {
				hestia_slider();
			} else {
				hestia_big_title();
			}
		}
	}
endif;

add_action( 'hestia_header', 'hestia_slider_compatibility' );
(cc) 2006-2012 ForgottenLabs.com&lt;/pre&gt;



&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
<category>Inne języki</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/274512/wordpress-konfiguracja-slidera-w-motywie</guid>
<pubDate>Thu, 03 Aug 2017 18:06:42 +0000</pubDate>
</item>
<item>
<title>Wordpress konfiguracja motywu</title>
<link>https://forum.pasja-informatyki.pl/274410/wordpress-konfiguracja-motywu</link>
<description>

&lt;p&gt;Cześć,&lt;/p&gt;



&lt;p&gt;Chciałbym dodać karuzele/slider na stronie głównej w tym motywie&amp;nbsp;&lt;a href=&quot;https://themeisle.com/demo/?theme=Hestia&quot; rel=&quot;nofollow&quot;&gt;https://themeisle.com/demo/?theme=Hestia&lt;/a&gt;. Jednak nie potrafię tego zrobić(pierwszy raz działam w wordpresie) i dodam jeszcze, że jest to darmowa wersja szablonu. Chciałbym się dowiedzieć w jakim pliku działać, widziałem hierarchie jednak i tak nadal tego nie potrafię ogarnąć.&lt;/p&gt;</description>
<category>HTML i CSS</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/274410/wordpress-konfiguracja-motywu</guid>
<pubDate>Thu, 03 Aug 2017 12:17:06 +0000</pubDate>
</item>
<item>
<title>WORDPRESS -- Jak usunąć(ukryć) daną pozycje z personalizacji motywu?</title>
<link>https://forum.pasja-informatyki.pl/226343/wordpress-jak-usunac-ukryc-dana-pozycje-z-personalizacji-motywu</link>
<description>J.W.&lt;br /&gt;
&lt;br /&gt;
Chcę usunąć jedną pozycję z personalizacji motywu ?&lt;br /&gt;
&lt;br /&gt;
Jak mogę to zrobić?</description>
<category>Systemy CMS</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/226343/wordpress-jak-usunac-ukryc-dana-pozycje-z-personalizacji-motywu</guid>
<pubDate>Sun, 12 Feb 2017 18:54:11 +0000</pubDate>
</item>
<item>
<title>Czy w CodeBlocks można zmienić tło kompilatora, by nie był biały?</title>
<link>https://forum.pasja-informatyki.pl/79530/czy-w-codeblocks-mozna-zmienic-tlo-kompilatora-by-nie-byl-bialy</link>
<description>

&lt;p&gt;Jak wyżej chciałbym zmienić tło podczas programowania, wcześnie korzystałem z innej wersji i tam miałem tło ciemne gcc hacker, czy ktoś wie, gdzie można to zmienić?&lt;img alt=&quot;smiley&quot; src=&quot;https://forum.pasja-informatyki.pl/qa-plugin/ckeditor4/plugins/smiley/images/regular_smile.png&quot; style=&quot;height:23px; width:23px&quot; title=&quot;smiley&quot;&gt;&lt;/p&gt;</description>
<category>C i C++</category>
<guid isPermaLink="true">https://forum.pasja-informatyki.pl/79530/czy-w-codeblocks-mozna-zmienic-tlo-kompilatora-by-nie-byl-bialy</guid>
<pubDate>Sat, 14 Nov 2015 14:22:31 +0000</pubDate>
</item>
</channel>
</rss>