Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all 512573 articles
Browse latest View live

A very beautiful thing

$
0
0

Replies: 0

A very beautiful thing


Retrive Post an Pages From SQL Database BackUp

$
0
0

Replies: 0

Hi, how is the forum today? I hope every one is getting their issues resolved. My problem is that I need to know how to get my posts and pages from an older SQL database backup file. I have the my WP database backup on my computer hard drive. Is there a way for me to retrieve the posts and pages content from that database. Can you help? Your help appreciated, Thank you

custom version of the jQuery JS library not working

$
0
0

Replies: 0

When our WP pages were built it was with a custom version of the jQuery JS library. I have no idea what was done to it, but now it’s causing problems. Is there any way to go back to the default jQuery JS library.

Don’t get too techy with me, as I know next to nothing about WP.

  • This topic was modified 43 seconds ago by w8tts.

No language file

$
0
0

Replies: 0

Impossible to make local language translations without changing PHP code.

Good Publings

$
0
0

Replies: 0

basit, etkil .. ras 🙂 j’ai bien ab un bug mais c’était SSL mon activé

Super header menu

$
0
0

Replies: 0

Dear Sirs

If someone can help me I am very grateful.

I have one super header (over the navigation menu on top) – div class=”sp-header sp-header-loaded”

I cannot find that in css.

I tried some commands to put in aditional css to remove that. But without success.

Someone can send me a code for that?

Thanks

سالهاست استفاده می کنم

$
0
0

Replies: 0

بهترین فارسی ساز هماهنگ با نسخه انگلیسی

  • This topic was modified 55 minutes ago by Ali2k.

Problem importing variable products

$
0
0

Replies: 0

Hello, I currently have two web pages and I want to pass all the products from one to the other.
I have used the Woocommerce exporter to create a CSV with all the products and their variations.
The problem is that when you import the CSV to the new web page, not all the variations appear, some appear and some not.
Can I do something to show all the variations?
Thank you!


Hardcoded plugins folder path

$
0
0

Replies: 0

@phamtungpth: WP Pipes uses the constant OB_PATH_PLUGIN for the path to the WordPress site plugins folder and is hardcoded to a specific path ('wp-content' . DS . 'plugins' . DS).
However, the path can be indeed different, like on roots.io Bedrock WordPress sites, but on any WordPress site because the plugins folder path is configurable.
This causes WP Pipes not to find any WP Pipes extensions from installed plugins.

The WP_PLUGIN_DIR constant can be used instead which always has the correct path for any WordPress site configuration.

So
define( 'OB_PATH_PLUGIN', ABSPATH . 'wp-content' . DS . 'plugins' . DS );
has to be replaced with
define( 'OB_PATH_PLUGIN', WP_PLUGIN_DIR );
Or WP_PLUGIN_DIR directly used instead of OB_PATH_PLUGIN.

  • This topic was modified 39 minutes ago by strarsis.

Sorry, this content could not be embedded 2

$
0
0

Replies: 0

Hi @danish-ali

Thank you for your quick reply. I am 1 of 5 admins of my silentheroes group, but I am the only admin of my second group https://www.facebook.com/justiceforpoland/ . There is a message “Embedded content from facebook.com can’t be previewed in the editor” and the plugin also does not work with this URL. A webpage displays URL and that’s it.
I am also trying the third URL https://www.facebook.com/edwardoreid (my personal fb page) “Sorry, this content could not be embedded”. I am not sure what is supported and what is not. Are groups where I am the only admin supported? Are groups where I am one of admins supported? Are personal fb pages supported? Please explain. The issue is not resolved yet.
Best regards, Edward Reid

Good Publings

Posted Comments not showing up with Elementor

$
0
0

Replies: 0

Hello,

The posted comments are not showing up when i use elementor on my post, when i disable the elementor plugin, the comments are showing up, i only have this issue with this theme(boxstyle), no issue with others, please help me solve this.

https://imgur.com/o2EADgQ -> (elementor disable, posted comments are showing up)
https://imgur.com/8KAfXIW -> (elementor enable, posted comments, not showing up)

Filter for deactivating “sidebars” meta box on specific pages / post types

$
0
0

Replies: 0

Hi there,
is there a filter available, that allows me to deactivate the “sidebars” metabox for specific post types in general?

This metabox: https://imgur.com/UUuKlAV

I know, I could hide this box due screen options on post basis, but I would like so hide it in general, that not all of the editors need to hide it theirselves.

I want to prevent any issues, that they mistakenly overwrite the custom sidebar that was set for this post type on the widget section.

Thanks a lot!

  • This topic was modified 31 minutes ago by mattce.

Background color before video loads?

$
0
0

Replies: 0

How can I set the background color, before the video loads? I have a white logo, and the default background is white, with a few seconds before the video loads. : /

Thanks!

PHP 7.1 + CF7 5.1.4 Working Code

$
0
0

Replies: 0

Dear Plugin Author Mahesh,

You did a fantastic job in creating the plugin recently i had to work on php7.1 and contact form7 5.1.4 and lots of things needs to be be updated so i fixed it up and and posting a dropbox Link here

https://www.dropbox.com/s/div55hkfohpnhyo/cf7-cc-avenue-add-on.zip?dl=0

If you can please update the plugin lots of people from wordpress community will be benifited.

Summary
The error500 on php7 is due to encrypt and decrypt functions have been deprecated in php7 which has been updated on

cf7-cc-avenue-add-on/includes/ccavenue/crypto.php as below


function encrypt($plainText,$key)
{
    $secretKey = hextobin(md5($key));
    $initVector = pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f);
    $encryptedText = openssl_encrypt($plainText, "AES-128-CBC", $secretKey, OPENSSL_RAW_DATA, $initVector);
    $encryptedText = bin2hex($encryptedText);
    return $encryptedText;
}

function decrypt($encryptedText,$key)
{
    $secretKey         = hextobin(md5($key));
    $initVector         =  pack("C*", 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f);
    $encryptedText      = hextobin($encryptedText);
    $decryptedText         =  openssl_decrypt($encryptedText,"AES-128-CBC", $secretKey, OPENSSL_RAW_DATA, $initVector);
    return $decryptedText;
}

The required paramaters are not being posted to CC avenue to process it that i have added on

cf7-cc-avenue-add-on/includes/cf7_ccav_process_payment.php as line 169

$merchant_data = 'merchant_id='.$merchant_id.'&language=EN&currency=INR&amount='.$amount.'&redirect_url='.$redirect_url.'&cancel_url='.$cancel_url.'&order_id='.time();

Regards
Nazrul


Great Plugin with multiple functionality

$
0
0

Replies: 0

Its a great plugin which gives us extra features and i am loving all what it gives me i have more to work on it gives me more to choose and less restrictions of ifs.

Preventing Latin sentences from showing up

$
0
0

Replies: 0

When I add any new section, two Latin sentences are added. The result is that every time I add a section, I have to click three times to get rid of those sentences. How do I prevent the Latin, which is useless to me, from showing up at all? Please help me save time!

Marvelous

$
0
0

Replies: 0

way better than other ones as Bakery PB

Conflicts with Elementor popup

$
0
0

Replies: 0

hey I’ve added a pop-up to WP multisite post page

pop works in elementor editor but not working when in preview or live page
https://shoutout.shouthunt.com/intrepreneurs/donations/intrepreneurs

I’ve set the popup to the power button at the top-right corner and i button in the middle of the card.

the issue is from ACF plugin

after deactivating ACF popup start loading

i tried pro and free both version but still it not fixed

Hide sidebar for portfolio post (make full width)

$
0
0

Replies: 0

How do I hide the sidebar and make portfolio posts full width?

Viewing all 512573 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>