Quantcast
Channel: WordPress › Support » Forum: Hacks - Recent Topics
Viewing all 8245 articles
Browse latest View live

rositajuurinen on "Adding mailchimp pop up???"

$
0
0

I have trying a dozen different ways to add a nice simple email subscriber pop up and it seems impossible. I added 5 different plugins but no success. Now I made the code with mailchimp but it seem to be unclear where to paste it? I tried already with header and footer plugin but no success I dont understand how to add the code to domain root.Tried and failed.
Is there any EASY way to add a subscriber pop up to your blog, anykind of ??? My theme is cicero.

Thanks a lot!


ahmedmz on "increase number of special characters in member registration in WordPress"

$
0
0

Hello
WordPress don't accept member registration with special characters in username.

I used the following simple plugin to resolve this issue , it is OK but the issue that the maximum number of special characters is limited , member can use is 8 only.

How can I increase it?
thanks

<?php

/*

Plugin Name: Wordpress Special Characters in Usernames

Plugin URI: http://www.oneall.com/

Description: Enables usernames containing special characters (russian, cyrillic, arabic) on your Wordpress Blog

Version: 1.2

Author: Claude Schlesser

Author URI: http://www.oneall.com/

License: GPL2

*/

/**

 * Overrides the Wordpress sanitize_user filter to allow special characters

 */

function wscu_sanitize_user ($username, $raw_username, $strict)

{

    //Strip HTML Tags

    $username = wp_strip_all_tags ($raw_username);

    //Remove Accents

    $username = remove_accents ($username);

    //Kill octets

    $username = preg_replace ('|%([a-fA-F0-9][a-fA-F0-9])|', '', $username);

    //Kill entities

    $username = preg_replace ('/&.+?;/', '', $username);

    //If strict, reduce to ASCII, Cyrillic and Arabic characters for max portability.

    if ($strict)

    {

        //Read settings

        $settings = get_option ('wscu_settings');

        //Replace

        $username = preg_replace ('|[^a-z\p{Arabic}\p{Cyrillic}0-9 _.\-@]|iu', '', $username);

    }

    //Remove Whitespaces

    $username = trim ($username);

    // Consolidate contiguous Whitespaces

    $username = preg_replace ('|\s+|', ' ', $username);

    //Done

    return $username;

}

add_filter ('sanitize_user', 'wscu_sanitize_user', 10, 3);

Lukasz Nowicki on "Plugin translation - do not use variable names for the text domain"

$
0
0

Hi guys,
I just read 'Warning: Do not use variable names for the text domain portion of a gettext function. Do not do this as a shortcut: __( ‘Translate me.’ , $text_domain );'
and that is fine with me, I don't use variable names.
However, I use constant.
So... is it ok to use constant? It works... what can possibly go wrong?

jondaley on "save_post_{$type} hook flakiness?"

$
0
0

I have a hook save_post_recipe that works well most of the time.

Among other things, the hook automatically updates post categories based on some post_meta fields of the post.

If I click on "update" manually, it works fine.

But, after a week or two, something is modifying the post without running my save_post hook, and it changes the post_categories.

My current solution a huge for loop that I run every once in a while that goes through the whole database, and calls wp_update_post on every post, which takes a while (thousands of posts) and is annoying, because visitors see that the recipes are categorized incorrectly, and are wondering why our data doesn't work.

I am now outputting to a file whenever my code is called, and I've just proven that my hooked code isn't even running, but the data is changing somehow.

How can a post be saved without have the save_post_XXX hook be called?

sd17 on "action set_user_role missing additional roles"

$
0
0

Hello,

I'm using the set_user_role action. When the action is executed using the $role parameter, it will only show the primary role associated with that account. Even if I run a SQL query and dump the meta key for wp_capabilities in the action it will only show the single role If I output the roles before and after the action it will show all of the roles associated with that account.

I'm using the plugin WPFront User Role Editor to assign additional secondary roles.

Any help is much appreciated.

Hamlet_PL on "My first shorecode"

$
0
0

Welcome,
I try add my own shortcod to function.php in Hueman theme. Function doesn't show any error but I no see any <a href="...">. Below i paste my code. Where I make a error?

// ShowPrivateFile
function ShowPrivateFile() {
	ob_start();
	$output='';
	if ( is_page( 'login' ) ) {
		$output = 'Pliki dostępne tylko po zalogowaniu:'.
                '<a href="aaa.pl">abcd</a></br>'.
		'<a href="aaa.pl">Faktura Klamki.JPG</a></br>'.
		'<a href="aaa.pl">Faktura Wkladki Klucze.JPG</a></br>';
	}
	return $output;
}
add_shortcode("pokaz_prywatne_pliki", "ShowPrivateFile");

regards

driftmagazine on "A list of users with a specific role as a link."

$
0
0

I want to make a list of a specific role. I get to the list itself, but then I do not get the link. I want each name to link to their profile page.

I have tried all sorts of different variants and has now tried and tested me out for several weeks. Here are some different tests.

http://driftmagazine.se/fotografer/

boionfire81 on "image search"

$
0
0

I have a huge image gallery and I need my visitors to be able to find an image through keywords or attributes, such as color, etc.

Preferably outside/it's own search area (i.e. search images only). Default media page is fine. But the visitor needs to be able to narrow down the media gallery as much as possible to find the image they are looking for.

Thanks for your help!


YOEBO on "Show dynamic content with button"

$
0
0

I need to show a button by default and replace/show different html when a user either clicks a button or preferably selects from a drop down list.

My goal is to have varying prices for a shop item so show the base price then change it when a different selection is chosen.

If you could show me the code or point me to a resource that would be very helpful. Thank you.

T. Lee on "$post info not available in admin-ajax action callback?"

$
0
0

I have looked at a number of AJAX-related articles on the web and on codex.wordpress.org and developer.wordpress.org, including http://codex.wordpress.org/AJAX_in_Plugins, but I have not found an answer to this question.

I am developing a custom plugin that enqueues a javascript/jQuery script on the front side which makes a call to admin-ajax.php to retrieve a custom DIV from wp_ajax_my_action (my_action_callback) which has been hooked with add_action.

I want the content of the DIV to be based on various $post and postmeta information. But, even though I have included "global $post;" in the action callback function, $post is empty.

When displaying a page, which is when the front-side script is loaded, it would seem to me that this would be in "The Loop" and $post should be available simply needing to be referenced as a global in the function.

Is this not so?

The only method I have determined of having access to the post info is by including the post ID in the data (array) argument to wp_localize_script() when enqueuing the front-side script.

Is this the proper way to get access to $post info? Or is there a better way to access the post information in an admin ajax action callback?

Edit: P.S. Both 'get_the_ID()' and 'is_page()' also do not work in the action callback function.

tikkral on "Error 403 Access Denied"

$
0
0

Hello,
When sharing a post a get the following Error 403 Access Denied.
i used the facebook debugging tool.

Christina on "Remove theme support via plugin?"

$
0
0

I'm attempting to write my first plugin. How do you de-register a theme feature via a plugin?

Obviously, putting remove_theme_support( 'custom-background' ); in the plugin file doesn't work.

Thanks!

alexgilseg on "Image size for image_default_link_type','file'"

$
0
0

Heya.. quick question..

When posting images I want the window that displays them when clicked shows bigger pictures, like almost full screen. Right now it uses a small portion of my screen, almost as small as the image itself when I've chosen to show it as "medium sized" when uploaded. If I go to the img url the picture is huge so it's not that I've uploaded a "small picture".

Where do I edit the image windows restrictions that shows up when pictures are clicked??

Thanks!

4cm on "admin-ajax.php"

$
0
0

Im having problems all of a sudden

see report provided by my hosting providor

What do I need to do to fix these

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:1) (Fingerprints:0)
Date: Tue, 2 Feb 2016 16:15:12 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

Scanning web upload script file...
Time : Tue, 2 Feb 2016 16:15:12 +0800
Web referer URL :
Local IP : 169.45.177.139
Web upload script user : nobody (99)
Web upload script owner: churchin (503)
Web upload script path : /home/churchin/public_html/Hope-to-the-Nations/wp-admin/admin-ajax.php
Web upload script URL : http://churchinperth.com/Hope-to-the-Nations/wp-admin/admin-ajax.php
Remote IP : 138.122.92.23
Upload data md5sum : fb9f73471df3cd6d6cd3413bc207bbc6
Deleted : No
Quarantined : Yes [/home/quarantine/cxscgi/20160202-161512-VrBlkKktsYsAAG0lP8gAAAAG-file-3nPHSh.1454400912_1]

----------- SCAN REPORT -----------

TimeStamp: Tue, 2 Feb 2016 16:15:12 +0800

(/usr/sbin/cxs --nobayes --cgi --clamdsock /tmp/clamd --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options mMOLfSGchexdnwZDRu --qoptions Mv --quarantine /home/quarantine --quiet --sizemax 500000 --smtp --ssl --summary --sversionscan --timemax 30 --virusscan /tmp/20160202-161512-VrBlkKktsYsAAG0lP8gAAAAG-file-3nPHSh)

'/tmp/20160202-161512-VrBlkKktsYsAAG0lP8gAAAAG-file-3nPHSh'
ClamAV detected virus = [PHP.Hide-2]

---------- Forwarded message ----------
From: Brad Hinchliffe <admin@netdnx.com>
To: Gary Green 4cm <gary@4cmwebdesign.com>
Cc:
Date: Tue, 02 Feb 2016 19:15:22 +0800
Subject: Fwd: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:1) (Fingerprints:0)

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:1) (Fingerprints:0)
Date: Tue, 2 Feb 2016 04:00:22 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

Scanning web upload script file...
Time : Tue, 2 Feb 2016 04:00:22 +0800
Web referer URL :
Local IP : 169.45.177.139
Web upload script user : nobody (99)
Web upload script owner: fourcmn (525)
Web upload script path : /home/fourcmn/public_html/4cminews.com/wp-admin/admin-ajax.php
Web upload script URL : http://4cminews.com/wp-admin/admin-ajax.php
Remote IP : 46.118.155.216
Upload data md5sum : b46add7d8e35aabf0544f0c0799ceb15
Deleted : No
Quarantined : Yes [/home/quarantine/cxscgi/20160202-040020-Vq@5VKktsYsAACbthWQAAAAE-file-jwt9Cz.1454356822_1]

----------- SCAN REPORT -----------

TimeStamp: Tue, 2 Feb 2016 04:00:22 +0800

(/usr/sbin/cxs --nobayes --cgi --clamdsock /tmp/clamd --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options mMOLfSGchexdnwZDRu --qoptions Mv --quarantine /home/quarantine --quiet --sizemax 500000 --smtp --ssl --summary --sversionscan --timemax 30 --virusscan /tmp/20160202-040020-Vq@5VKktsYsAACbthWQAAAAE-file-jwt9Cz)

'/tmp/20160202-040020-Vq@5VKktsYsAACbthWQAAAAE-file-jwt9Cz'
ClamAV detected virus = [PHP.Exploit.C99]

---------- Forwarded message ----------
From: Brad Hinchliffe <admin@netdnx.com>
To: Gary Green 4cm <gary@4cmwebdesign.com>
Cc:
Date: Tue, 02 Feb 2016 19:15:46 +0800
Subject: Fwd: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:0) (Fingerprints:0)

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:0) (Fingerprints:0)
Date: Tue, 2 Feb 2016 00:00:31 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

----------- SCAN REPORT -----------

TimeStamp: Tue, 2 Feb 2016 00:00:02 +0800

(/usr/sbin/cxs --allusers --nobayes --clamdsock /tmp/clamd --ctime 25 --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options OLfmMChexdDZRP --qoptions Mv --quiet --report /root/scandaily.log --sizemax 500000 --ssl --nosummary --sversionscan --timemax 30 --virusscan --voptions fmMhexT --www)

(20) fourcmn, Scanning /home/fourcmn/public_html:

'/home/fourcmn/public_html/fourcm.com/wp-content/uploads/2014'
Skipped - too many resources: 12716 ( > filemax=10000)

---------- Forwarded message ----------
From: Brad Hinchliffe <admin@netdnx.com>
To: Gary Green 4cm <gary@4cmwebdesign.com>
Cc:
Date: Tue, 02 Feb 2016 19:16:10 +0800
Subject: Fwd: cxs Scan on trinity.hostdnx.com (Hits:2) (Viruses:0) (Fingerprints:1)

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:2) (Viruses:0) (Fingerprints:1)
Date: Mon, 1 Feb 2016 20:20:01 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

Scanning web upload script file...
Time : Mon, 1 Feb 2016 20:20:01 +0800
Web referer URL :
Local IP : 169.45.177.139
Web upload script user : nobody (99)
Web upload script owner: fourcmn (525)
Web upload script path : /home/fourcmn/public_html/4cminews.com/wp-admin/admin-ajax.php
Web upload script URL : http://4cminews.com/wp-admin/admin-ajax.php
Remote IP : 94.41.53.210
Upload data md5sum : a1aee5a38d6ebe26d4ffa247fe34d062
Deleted : No
Quarantined : Yes [/home/quarantine/cxscgi/20160201-202000-Vq9NcKktsYsAAFxv7-0AAAAD-file-nJcO89.1454329201_1]

----------- SCAN REPORT -----------

TimeStamp: Mon, 1 Feb 2016 20:20:01 +0800

(/usr/sbin/cxs --nobayes --cgi --clamdsock /tmp/clamd --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options mMOLfSGchexdnwZDRu --qoptions Mv --quarantine /home/quarantine --quiet --sizemax 500000 --smtp --ssl --summary --sversionscan --timemax 30 --virusscan /tmp/20160201-202000-Vq9NcKktsYsAAFxv7-0AAAAD-file-nJcO89)

'/tmp/20160201-202000-Vq9NcKktsYsAAFxv7-0AAAAD-file-nJcO89'
(compressed file: revslider/MHC.php [depth: 1]) Regular expression match = [decode regex: 1]
(compressed file: revslider/MHC.php [depth: 1]) (decoded file [depth: 1]) Known exploit = [Fingerprint Match] [Shell Exploit [P0310]]

---------- Forwarded message ----------
From: Brad Hinchliffe <admin@netdnx.com>
To: Gary Green 4cm <gary@4cmwebdesign.com>
Cc:
Date: Tue, 02 Feb 2016 19:16:33 +0800
Subject: Fwd: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:1) (Fingerprints:0)

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:1) (Viruses:1) (Fingerprints:0)
Date: Mon, 1 Feb 2016 13:57:51 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

Scanning web upload script file...
Time : Mon, 1 Feb 2016 13:57:51 +0800
Web referer URL :
Local IP : 169.45.177.139
Web upload script user : nobody (99)
Web upload script owner: fourcmn (525)
Web upload script path : /home/fourcmn/public_html/4cminews.com/wp-admin/admin-ajax.php
Web upload script URL : http://4cminews.com/wp-admin/admin-ajax.php
Remote IP : 85.128.142.34
Upload data md5sum : 0ef4411264c63458a0e7c1d06e10cce1
Deleted : No
Quarantined : Yes [/home/quarantine/cxscgi/20160201-135751-Vq7z36ktsYsAAC-60ScAAAAH-file-GjaesE.1454306271_1]

----------- SCAN REPORT -----------

TimeStamp: Mon, 1 Feb 2016 13:57:51 +0800

(/usr/sbin/cxs --nobayes --cgi --clamdsock /tmp/clamd --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options mMOLfSGchexdnwZDRu --qoptions Mv --quarantine /home/quarantine --quiet --sizemax 500000 --smtp --ssl --summary --sversionscan --timemax 30 --virusscan /tmp/20160201-135751-Vq7z36ktsYsAAC-60ScAAAAH-file-GjaesE)

'/tmp/20160201-135751-Vq7z36ktsYsAAC-60ScAAAAH-file-GjaesE'
ClamAV detected virus = [PHP.Hide-2]

---------- Forwarded message ----------
From: Brad Hinchliffe <admin@netdnx.com>
To: gary Green 4cm <gary@4cmwebdesign.com>
Cc:
Date: Tue, 02 Feb 2016 19:17:00 +0800
Subject: Fwd: cxs Scan on trinity.hostdnx.com (Hits:3) (Viruses:0) (Fingerprints:2)

-------- Original Message --------
Subject: cxs Scan on trinity.hostdnx.com (Hits:3) (Viruses:0) (Fingerprints:2)
Date: Mon, 1 Feb 2016 08:33:40 +0800
From: root@trinity.hostdnx.com
To: root@trinity.hostdnx.com

Scanning web upload script file...
Time : Mon, 1 Feb 2016 08:33:40 +0800
Web referer URL :
Local IP : 169.45.177.139
Web upload script user : nobody (99)
Web upload script owner: ()
Web upload script path : /home/fourcmn/public_html/4cminews.com/
Web upload script URL : http://4cminews.com/?page_id=11900/wp-admin/admin-ajax.php
Remote IP : 178.250.29.50
Upload data md5sum : b1b3d1637a3481cd56b1e1be3e12c6a7
Deleted : No
Quarantined : Yes [/home/quarantine/cxscgi/20160201-083340-Vq6n5KktsYsAAC7ka1cAAAAK-file-SsP8Jw.1454286820_1]

----------- SCAN REPORT -----------

TimeStamp: Mon, 1 Feb 2016 08:33:40 +0800

(/usr/sbin/cxs --nobayes --cgi --clamdsock /tmp/clamd --defapache nobody --doptions Mv --exploitscan --nofallback --filemax 10000 --html --ignore /etc/cxs/cxs.ignore --mail root --options mMOLfSGchexdnwZDRu --qoptions Mv --quarantine /home/quarantine --quiet --sizemax 500000 --smtp --ssl --summary --sversionscan --timemax 30 --virusscan /tmp/20160201-083340-Vq6n5KktsYsAAC7ka1cAAAAK-file-SsP8Jw)

'/tmp/20160201-083340-Vq6n5KktsYsAAC7ka1cAAAAK-file-SsP8Jw'
(compressed file: revslider/mil.php [depth: 1]) Regular expression match = [decode regex: 1]
(compressed file: revslider/mil.php [depth: 1]) (decoded file [depth: 1]) Known exploit = [Fingerprint Match] [PHP Injection Exploit [P0366]]
(compressed file: revslider/pbot.php [depth: 1]) Known exploit = [Fingerprint Match] [PHP Exploit [P0174]]

dohertyjf on "Help for Related Posts within Custom Post Type? Not looping"

$
0
0

Hi WP community -

I'm trying to call Related Custom Posts from directly within my theme as opposed to using a Related Posts plugin, mostly because WPengine doesn't allow most of them and most of them also don't work with Related Posts.

I got the following code to work to call 1 related, but I can't figure out why it's not looping to call 3? I'm sure I'm missing something simple, but I can't find it. Any help?

[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

<?php if (is_singular( 'team-member' ) ):

								$orig_post = $post;
								global $post;
								$tags = wp_get_post_tags($post->ID);

								if ($tags) {
								$tag_ids = array();
								foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;

								$args=array(
								'tag__in' => $tag_ids,
								'post__not_in' => array($post->ID),
								'posts_per_page'=>3, // Number of related posts to display.
								'caller_get_posts'=>1,
								'post_type' => 'team-member',
								'taxonomy' => 'team-member'
								);

								$my_query = new wp_query( $args );

								while( $my_query->have_posts() ) {
								$my_query->the_post(); } }
							?>

							<h3 class="related-header">Similar Partners</h3>
								<div class="relatedthumb">
									<a rel="external">"><?php the_post_thumbnail(array(200,200)); ?>
									<div class="partner-name"><?php the_title(); ?></div>
									</a>
								</div>

								<?

								$post = $orig_post;
								wp_reset_query();

								endif;

?>

Many thanks!

Btw, the site is http://www.getcredo.com and an example of a page where it will go is http://www.getcredo.com/team-member/john-doherty/


AmandaEve on "Remove Shortcode Hook"

$
0
0

Is there a way I can set up a hook like this to remove a specific shortcode in 20 seconds?

I found this code online ... but I don't know how to execute it. I've added it to the functions.php ... but I'm not sure what to replace wp_footer with.

add_action( 'wp_footer', 'remove_content_timer' );
function remove_content_timer() {
	?>
	<script type="text/javascript">

	setTimeout(function() {
		// run the necessary javascript to remove the content
	}, 20000); // run function after 20000ms

	</script>
	<?php
}

Francesco on "TinyMCE and Schema Markup - the eternal battle"

$
0
0

It is well known that TinyMCE strips down certain HTML tags when switching from text to visual editor and back.

I am trying to find an elegant and safe way to add extended_valid_elements to TinyMCE in order to prevent it from stripping down certain Schema.org markup tags, most of which related to LocalBusiness.

I have found some solutions in these forums and elsewhere, but non of them seem to do the trick. Either they work partially, or they "break" the editor.

In the specific, I need to always safeguard these:
div meta span link time ul li
itemscope itemtype itemprop

Has anyone found a comprehensive workaround for this yet?
Thanks in advance!

tgrant02 on "Bad Plugin -Locked out, password changed, email doesn't work"

$
0
0

I recently downloaded "Custom Login" as a Plugin and was locked out of my account shortly after. I run cambridgeenergyalliance.org. My admin page displays this:

"Strict Standards: Redefining already defined constructor for class JCP_UseGoogleLibraries in /home3/cea/public_html/wp-content/plugins/use-google-libraries/use-google-libraries.php on line 123

Strict Standards: Redefining already defined constructor for class WP_Table_Reloaded_Controller_Frontend in /home3/cea/public_html/wp-content/plugins/wp-table-reloaded/controllers/controller-frontend.php on line 60

Strict Standards: Redefining already defined constructor for class WP_Table_Reloaded_Controller_Base in /home3/cea/public_html/wp-content/plugins/wp-table-reloaded/controllers/controller-base.php on line 98

Warning: Cannot modify header information - headers already sent by (output started at /home3/cea/public_html/wp-content/plugins/use-google-libraries/use-google-libraries.php:123) in /home3/cea/public_html/wp-includes/pluggable.php on line 1179"

I can't login at all.

I unfortunately don't have many options to fix this. I don't have the email that my organization used to set up the account, and I keep being notified that my password doesn't work anymore, which leads me to believe it has been changed.

What are my options for: either shutting down this plugin, changing my email to reset the password, or generally recovering the website? Any help would be appreciated.

BakekaIncontritalia on "Only hide new post"

$
0
0

Hi all,
I have an problem....
I'd like hide link inside wp users control panel Post ----> New Post.

I'm looking plugin or code that hide only this possibility of add new post from Post ----> New post without change general permits....
Only hide link...

Is it possible??

axxel84 on "How to dinamically change a page title via JS"

$
0
0

I am trying to use JS to dinamically change some page elements content, based on a radio button selection. For now all in-page elements work fine, but cannot manage to change the page title.

For example, if I want to change a label content, I use

document.getElementById('myElementId').innerHTML = 'myNewContent';

via Chrome dev tools, I've seen that the title page (h1) has no id, but it has a entry-title class. I tried

document.getElementsByClassName("entry-title").innerHTML = 'myNewContent';

but no luck. How can I change it?

Viewing all 8245 articles
Browse latest View live


Latest Images