Can we use open cart theme on clerkskart - opencart

i have a site created in open cart but now we want to convert it into clerkskart with same theme called superstar so i am curious that if we can install the same theme on the clerkskart also.
Thanks in advance.

Being that ClerksCart is a fork of OC, and the template system looks the same, you should be fine with only a few minor tweaks here and there.

Related

Overriding Woocommerce child theme not working

Overriding Woocommerce files from my child theme is not working at all. I am sure everything is 100% right, really frustrating. I am following every step in a video at this page:
https://docs.woocommerce.com/document/template-structure/
Ah, it was so simple. Go to this path:
WP Dashboard -> WooCommerce -> System Status -> Tools
and then uncheck the "Template debug mode":
If someone is still interested in this topic I have found what was causing this issue on my theme. Just add the theme support for Woocommerce in functions.php as described on Github.
https://github.com/woocommerce/woocommerce/wiki/Declaring-WooCommerce-support-in-themes
Since the Template Debug Mode is no longer an option in Woocommerce system tools, this is what worked for me.
Just add this line to your wp_config.php file:
define('WC_TEMPLATE_DEBUG_MODE', false);

opencart checkout not expand,just show the 6 steps

Hi i have problem with opencart 1.5.6.4,my checkout dont like to expand and to show register or login when you proces to buy the product just,show the 6 step whit out to expand,The buttons at the one-page checkout are not expanding. If u visit this link: http://imeibox.com/index.php?route=checkout/checkout u can see there is not button are not doing anything, so we cannot fill in any information or select any options. Is there a simple solution for this problem or is there bad coding behind those buttons?
kind regards
GEORGI
Well this looks like it could be anything.
First thing that comes to mind,have you added a Jquery library to the header.tpl file recetly? if you have,there's your problem.
Try some checkups to see where the issue is coming from
1:turn off the theme you are using and check the cart again
2:Turn off any new modules you have installed
3:check your error log,and see what you have there,dont forget to check the vqmod/logs
usually that area of opencart works without a problem.so its either some code you did,the theme you are using or a bad module
DO not forget to do a backup before you do anything

Web Page of Typo3 templates

I would like to know if someone can help me to find one template for typo3. The requirements that i need for this template are:
Responsive
Multilanguage
Custom
SEO
I'm looking for TYPO3 template libraries. They don't need to be free. I'm looking for real Typo3 templates, ready to import into a vanilla Typo3 installation.
The reason I'm asking is that we have a customer and we'd like to give them a number of templates to choose from.
I need something like this page http://www.t3-template.de/typo3-template-kaufen.
Thanks in advance.
Best regards!
I think you are looking for somthing like this combination of TYPO3 extensions (TYPO3 6.2 or newer):
First of all you need themes (optional: gridelements, themes_gridelements)
install some themes like: theme_bootstrap, theme_foundation, theme_bootstrap_mosaic...
and switch the installed themes in the frontend with this
themes_showcase
Some dependencies (dyncss and so on) are solved automatically but dont forget t3jquery for all features.
Have a look here for more details:
https://github.com/typo3-themes

How to hide the template name?

this is my local site: drupaltest1/
When I/anyother developer inspect my site they can recognize which theme I am using. I want to hide the theme being displayed on inspect elements an display the site name in the path. I searched google, but no luck. Anyone please help in achieving this.
Thanks in advance
You could change the name of the theme to your sitename.
in sites/all/themes/ copy your theme folder and rename the folder
then replace the theme name in .info file and use find/replace in template.php and any other theme specific files as well. (notepad++ search in files works well)
upload and enable the new theme in Drupal
If you are not using a custom theme for your site, be sure to check the licensing/copyright to ensure renaming it isn't a violation - and updates may have issues so you could remove the project info and/or packing script info.
If you can create a sub-theme, then you would be able to hide those info(s) from being inspected your site pages.
Please reply if this helped you.
https://www.drupal.org/node/1010576
https://www.drupal.org/node/225125

Actionbar home icon in ActionBarSherlock

I am working off of the Styled project for ABS. I would like to customize the home icon in the actionbar. However, nothing I do seems to have any effect. I have tried to set the logo in the Manifest, styles, and in MainActivity. Has anybody come across this?
Thank you,
Igor
This was answered in another post
Apparently you must do getSupportActionBar().setIcon(R.drawable.my_custom_drawable); in MainActivity. I get it, but it's cumbersome that it cannot be set in the Manifest...