Discussion on Bridge - Creative Elementor and WooCommerce WordPress Theme

Discussion on Bridge - Creative Elementor and WooCommerce WordPress Theme

By
Cart 223,412 sales
Recently Updated
Well Documented

QODE supports this item

Supported

26722 comments found.

Hi,

I moved my website to another domain and suddenly de Google maps doesnt work anymore. What is going wrong here?

Hello,

That is because google map api have to be authorized for each domain separately, so if you changed domain, api key isn’t valid anymore, and you can probably see error when you open Google Chrome developer tools console. Following article explains API setup process https://qode.ticksy.com/article/9439/ and where it needs to be entered from theme options, but for anything else regarding Google map API key, you should consult instructions provided by google.

Qode

Hi, is it possible to use the woocommerc one page checkout ? and integrate a payment online in this page like stripe ? thanks a lot

Hello there,

Bridge theme is compatible with WooCommerce, and support is achieved according to WooCommerce official instructions, so all their addons should work fine. For configuration of WooCommerce and its addons you can contact WooCommerce support, and also, if you need assistance with anything else related to our theme, you can contact our support at https://qode.ticksy.com/

Qode

​Hi,

I would like to remove the nice scrolling effect when I click on a anchor in the “Know us better” submenu (see http://www.alteliostechnologygroup.com/en/). Currently, there is a nice scrolling effect, but I would like to use the old-school version (when you click, it takes you to the anchor instantly). I guess I could just take time to 0 somewhere in the javascript. But I can’t find where. Would you please help me with that?

NB: I’m aware it’s not ideal to change a file in the core theme, but I really need to do it unfortunatly.

Many thanks for your help!

Hello,

Remove anchor id from that row, and add row ID instead, and then target that ID trough custom link like this for example:

http://www.yourdomain.com/#someid

Qode

That’s perfect! Thank you so much.

You’re welcome.

Hi There,

My site I have just moved over live today and I am experience a few issues.

The logo, sliders and carousel are all showing as broken and I have no idea what the issue is or how to fix it.

tglsearch.com

Please can you help me ASAP.

Thank you in advance

Hello there,

Migration was not performed correctly, and links are still pointing to temp domain https://www.screencast.com/t/i0Qyefy6xq

You should follow this guide regarding moving WP installation. This also refers to migration from one server to another​ http://www.wpbeginner.com/wp-tutorials/how-to-move-wordpress-from-local-server-to-live-site/​

Also, for support related questions please submit a ticket directly to our support at https://qode.ticksy.com

Qode

Hello, I would like to know how I can change the color and size of titles in the sidebar, the color of the links…I tried to do it in Qode options > sidebar without any success. Thanks

Hello,

Please contact our support by submitting a ticket at https://qode.ticksy.com and share a link to your website in your ticket, so they can see sidebar which is being used and to be able to provide you with precise answer.

Qode

Hi. I would like to purchase theme but would like to know; can you import several themes so you can create different pages with different elements as per the demo’s?

Hello,

And thanks for the interest in our theme.

You can import any demo at any time, but because each demo will import content, it will overwrite existing demo so in order to test different demos, and to see which elements and options we used, it is good practice to install WordPress on your PC, and then to try different demos – helpful guide for local installation https://premium.wpmudev.org/blog/setting-up-xampp/

Qode

so I can import different demo’s and it will create the pages, but without the demo images, etc? This will be fine with me if that is the case…

Hello,

No, you have to clear previous demo, because imported pages will be overridden with pages and content from another demo. That is why we are suggesting to try different demos on local installation. Demo import process is explained within theme documentation on the following link http://bridge.qodeinteractive.com/documentation/3-demo-content/3-1-qode-import/

Qode

Hi, I have a problem with WPML and your theme. When you change the language, the current page is not preserved, and load the home page. When activate a default theme such as “twenty fifteen”, swithcing between languages preserve the current page correctly. Can you help me?

WP version: 4.7, WPML version: 3.3.6, WP version: 4.5.3.

Thanks

Hi there,

Try disabling page transitions from Qode options > General, because header needs to be refreshed, and with transitions, only content is being reloaded. Our support can check this closer if you submit a ticket at https://qode.ticksy.com/ , and also provide WordPress admin access in your ticket.

Qode

Thanks a lot! That’s the best solution, works perfectly!

You’re welcome.

I’m deleted the sample pages, how could I get them back ?

Hello,

You can restore deleted pages from trash https://www.screencast.com/t/o41phccUt but note that deleted items will be removed from trash after 30 days https://codex.wordpress.org/Trash_status

Qode

It’s more than 30 days, how to get it back ?

Hi again,

Then you cannot retrieve deleted items. Only possibility is to restore backup if you have one, or if hosting provider offers automatic backups, and if they keeping them for more then 30 days, you can contact your host and ask them to restore backup. Also, please understand that this is not related to our theme in any way.

Qode

Please action ticket #1072646 asap as first round support was incorrect – thank you!

Hi,

Support agent has been informed, and your ticket will be answered as soon as possible.​

Qode

My support has expired so I can’t post this on the official forum. Hope it helps someone, though!

Combining both category and tag matches for related posts

On a site I’m building, I have lots of portfolio items assigned to various categories and tags. I noticed that sometimes there would be only one “related” item shown, even though I knew that it shared the same category as multiple other pages.

It turned out, in looking at the “qode_get_related_post_type​()” function which is used by the portfolio-related.php template, that ​by default “tags” are prioritized over “categories”, and if there is even one post with a matching tag, you will not see any posts matched by category. That’s probably fine for most people, but I wanted to post my solution in case it helps anyone who runs into the same need I had.

All I had to do was put a new version of qode_get_related_post_type​() in the functions.php of my child theme. Here is my new function, which works exactly as I need it to:

http://pastebin.com/dbE9MzrS

If you place the code above in your child theme’s functions.php, you will cause the following changes in how your “related” items are shown.

  1. Categories will be prioritized over tags (instead of tags being primary). If you already have 4 related posts just by category, then it doesn’t include any related posts by tag. If you want to lave tags as primary, you can use this modified (but untested) version of the above code: http://pastebin.com/RHyPgrhT
  2. Your combined related posts (from both categories and tags) will be ordered randomly, since that’s what I needed. If you want to change those options you can easily do so.
  3. Also since it made it easier and was what I needed, I hardcoded the value for how many combined related posts to show: 4. If you need a different number of related posts you can modify it pretty easily.
  4. I also hardcoded the matches to be only looking for a “post_type” of “portfolio_page”. If you need other things you’ll have to modify the code.

As I mentioned, this is working great for me, so I just wanted to throw it out there in case anyone else needs a similar solution. Hopefully this either works out of the box for you, or gets you started in the right direction.

Hello,

And thanks for sharing your findings with others.

Qode

Does this theme have a live page builder that you can drag and drop into rather than keep previewing what you have changed?

Hello,

And thanks for writing in.

Visual Composer page builder is bundled with the theme, but front end editor is disabled by default because of some advanced java script functionality in our element. But, if you decide to use our theme, you can easily enable front end editor by following instructions from this article https://qode.ticksy.com/article/9537/

Qode

Thanks, is there any screenshots or videos on the front end page builder, will it be fine if i enabled it, made the whole website then disabled it again, if thats ok and page builder looks good I will be buying the theme today.

hello qode! i am loving the theme, but ran into a small issue while building my single page site. when using an anchor for a top navigation item, the site doesn’t scroll to the anchor, instead it jumps straight to it. is there a setting i am missing to get the smooth scroll? thanks!

never mind! i found it! just have to use the Anchor ID in the row instead of Row ID. thanks for a great theme!

Hi,

And thanks for update. We are glad to hear that you managed to resolve this by yourself.

Qode

Hello, the q_slider cuts off text content when viewing portfolio items on mobile. Can you tell me how to hide this element and move all the content below it up to take the space on mobile? I added the display:none for q_slider on mobile but it leaves a large white space in its place.

Hello there,

Please submit a ticket at https://qode.ticksy.com so our support can investigate this on your end. Also provide additional info in your ticket, like a link to a page with issue, so our support can inspect this.

Thanks, Qode

For some reason the ThemeForest search isn’t working so I can’t check for any other comments about this so apologies if it has been asked before. Are the images included in the bridge demos generally cc0 and usable? Specifically the slider images on bridge74. Thanks.

Hello,

You can import images with demo content by marking check box Import Attachments from Qode Import page https://www.screencast.com/t/4xURNLhr8 . In case that you are asking if you can use images on your site, please note that the images we use on our demo sites are copyrighted, and if you’d like to publish them on your site, you would need to purchase them separately. We bought most of our images on Shutterstock http://www.shutterstock.com/

Qode

Yes, I was asking about the latter. Many themes we’ve used have cc0 (royalty free) images on them so I was just checking. I’ll try to find the images on Shutterstock. Thanks.

You’re welcome.

Hello,

can you tell me how i disable the “titel” and “postet at” section.

There you can see a screenshot: http://bmptv.de/NlAtj

Thanks for your help.

Best regards Benny

Hi Benny,

This can be achieved with some custom css code, but please submit a ticket at https://qode.ticksy.com/ and provide a link to your site in that ticket, and our support will gladly assist you with this.

Qode

HI there, can you check this page quick? http://projekt1.tausendwasser.com – when i scroll down the text flows in the slider picture. Just on google chrome, opera. Can you help? Would be really cool! Thanks a lot!

Hello,

Please follow instruction from the following article https://qode.ticksy.com/article/9535/

Qode

Hey Guys. In the past you supplied me with some custom CSS to help with the responsiveness of the logo and menu in the header. For some reason it is not working between 1000-1250px. Caltas247.com

Hello there,

Probably you need to set media rule to cover 1250px . Our support can check this for you so please submit a ticket at https://qode.ticksy.com/ and provide WordPress admin access in your ticket.

Qode

Hi, I’ve enabled top bar and when I put 5 for the padding, it doesn’t give it padding. I’m changing the border colour and entering padding width, but it doesn’t take affect

Hello there,

Please submit a ticket at https://qode.ticksy.com so our support can investigate this on your end. Also provide additional info in your ticket, like a link to your website along with WordPress admin access.

Thanks, Qode

Hey,

Can you please say me how to remove the email adress in the “about the author” box under articles on the blog section please? :)

Hello,

Yes, you can hide author email with custom css code below:

.author_description .author_text_holder .author_email {
    display: none;
}

Apply the code from Qode options > General > Custom CSS field.

Qode

I made a ticket #1078567 can you take a look at it?

Cheers

Hello,

Yes, support will reply to you in timely manner, and they are answering to all support tickets from oldest to newest. I personally checked your tickets, and you are actually posting your every ticket here, and there is no urgency in tehm, so please wait in line like other users, because it is really not fair to them, and there are many other users who are waiting for reply patiently.

Thanks for understanding, Qode

Hi Qode,

Of course I can wait in patience.

Cheers

Thank you Sammy.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey